0

ドロップダウンリストを使用してさまざまなオプションを表示するasp.netアプリケーションを作成しています。ユーザーの許可によっては、一部のオプションを選択できない場合があります。
制限されているオプションは太字で表示されます。
ユーザーが太字フォントオプションの1つを選択したかどうかを確認するにはどうすればよいですか?これは奇妙なやり方だと思いますが、アプリの所有者はそれを望んでいます。

ありがとう!

4

1 に答える 1

1

You could try interrogating the attributes of DropDownList.SelectedItem to see if the selected item is restricted. How are you setting it the font property will determine how you can interrogate the selected item.

The only other way to do it is to re-run the logic to make the determination on the selected value, or store the indexes of the bolded items in a hidden field or viewstate property, or something like that.

于 2012-09-13T17:10:28.043 に答える