c# - How to tell ASP.NET not to insert in the request the value of a control? -
my question might sound strange, however, need do. consider having textbox, , want not go server side, must stay there, in client, control must not partecipate request.
how this?
thankyou
you can't have server control doesn't post back. way use <input type="text"/>
, put outside asp.net form. can't imagine want though.
edit:
it has occurred me use javascript move textbox outside asp.net form, leave <asp:textbox/>
can set properties server side.
Comments
Post a Comment