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.
C# で特定の ID を持つ ASP.NET コントロールを作成したい:
MyControl myControl = new MyControl { ID = "my-control" };
ただし、レンダリング後、識別は次のようになります。
<div id="ctl13_my-control"> ... </div>
カスケードのスタイルシートが欲しい:
<div id="my-control"> ... </div>
直し方?