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.
これを使用して特定のコントロールを設定しています
divCorporateId.Style.Add("Visibility", "hidden");
別の方法で値を確認するにはどうすればよいですか?
私は次のようなことを考えました:
if (divCorporateId.Style........ == "hidden") { do something }
何かのようなもの:
if (divCorporateId.Style[HtmlTextWriterStyle.Visibility] == "hidden") { do something }
このようにC#でCssプロパティ値を取得できます
string value = divCorporateId.Style["Key"]
次に、この値に基づいて条件を適用できます。