Set ClientID in asp.net

2019-02-16 17:13发布

Is it possible to set the ClientID of any asp.net server control? How can I do this?

7条回答
再贱就再见
2楼-- · 2019-02-16 17:38

I would advice against doing this unless you are sure you want to do it, but there is a way. You can override the ClientID property from within the server control.

public override string ClientID
{
    get { return "whatever"; }
}

But as others have noted, you can't do it from outside.

查看更多
【Aperson】
3楼-- · 2019-02-16 17:38

For VS 2010, .NET 4.0:

If you just try to set ctrl.ClientID="stringID" you will get an Error, saying that ClientID is read only. You can control the value of ClientID using ClientIDMode - which defines the algorithm with which ClientID is set:

ctrl.ID = "IDstring";
ctrl.ClientIDMode = ClientIDMode.Static;   //ClientID value is set to the value of ID

The html markup will mark your control's html with the control's ID. Thus you have some degree of control from the code-behind.

查看更多
等我变得足够好
4楼-- · 2019-02-16 17:40

ASP.NET 4 has ClientIDMode property on each control for that. If you want to turn off ClientID completely you can use this trick - it works for any non-postback control

查看更多
叼着烟拽天下
5楼-- · 2019-02-16 17:41

Even i think it is not possible in Visual studio 2008 . Because Control.ClientID Property has only get method

Edit :But in Visual studio 2010(.Net 4.0) it is possible

查看更多
相关推荐>>
6楼-- · 2019-02-16 17:42

That's not possible. The ClientID is generated by ASP.NET. From MSDN:

The ClientID value is generated by concatenating the ID value of the control and the UniqueID value of its parent control. If the ID value of the control is not specified, an automatically generated value is used.

查看更多
7楼-- · 2019-02-16 17:50

The good news is that in VS 2010 .Net 4, you'll have complete control over Client IDs!

Still for the current versions of .Net, you can make due. I assume you need the ID for JavaScript. If so, just get the ID like so:

<script type="text/javascript">
    var myTextBox = $('#<%=TextBox1.ClientID%>');
</script>
查看更多
登录 后发表回答