I'd like to fix name value in server. .Net change the actual field name when render the control in page. How to fix the value?
If I write ClientIDMode="Static"
id's not change. I don't want this.
<input type="text" name="username" runat="server" id="inputName" />
rendered <input name="ctl00$MainContent$inputName" type="text" id="inputName" class="form-control" placeholder="First name" clientid="static" />