1

C# で特定の ID を持つ ASP.NET コントロールを作成したい:

MyControl myControl = new MyControl { ID = "my-control" };

ただし、レンダリング後、識別は次のようになります。

<div id="ctl13_my-control"> ... </div>

カスケードのスタイルシートが欲しい:

<div id="my-control"> ... </div> 

直し方?

4

3 に答える 3