hi ,
i am doing a cms project in which i have to use html controls instead of server controls.But i have been using server controls in all the projects i have done.how can i use html controls instead of server controls.how should i use html controls where i have to display the list of somethings in a dropdown list bound from database.Please give me some idea and examples if possible.
Hoping for your help.Thanks in advanced.
Loading
Amit ChoudharyPosted Jul 28, 2010, 9:10 AM
Go like older fashioned scripting. like you have asked for how to add item to dropdown list:
Response.Write("");
you can also use string builder class object to create HTML dynamically and then you can write that object to Response stream.
Hope you got the idea.
Please mark 'Do you like this post' if it helps you.