Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我喜欢做一个条件绑定。例如,如果 SelectedValue 为空,我喜欢将其绑定到“太平洋时间”。以下不起作用,但会让您了解我正在尝试做的事情
SelectedValue='<%# Bind("Zone") ?? "Pacific Time" %>'
我知道这不是您要问的,但是在您的数据源中,如果它为 NULL,您能否将值设为 Pacific?
这应该工作
SelectedValue='<%# Bind("Zone") != null ? (string)Bind("Zone") : "Pacific Time" %>'