Click here to Skip to main content
15,867,686 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi All.
I want to create dynamic server controls using jquery. how can i do it?
please help me... thanks!
Posted

i too had the same thought by using jQuery,

but unfortunately the answer is you can't.

Reason to think that you can't:
Usually when creating a server control during design time or dynamically, you might observe an attribute
C#
runat="server"
in the tag, indicating that it's a server control.

just for fun: try adding an attribute to a control as
JavaScript
$("#labelid").attr("runat","server");
dynamically in a button click.
 
Share this answer
 
You don't say what you're using, but either way, it doesn't work that way. Server side controls need to be created in a page lifecycle. Dynamic controls won't have viewstate. Your best bet if you're using jquery is to use AJAX for all operations and forget server side controls.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900