Click here to Skip to main content
15,885,767 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
In vs 2010 i added new html page,Two radio buttons and submit button from html control.after selecting radio button and clicking the submit button to save it to the sqlserver database.I am using html page.but to fire button click logic.Please help me.

thank you,

regards,
raju
Posted
Updated 19-Mar-13 0:30am
v2
Comments
Joezer BH 19-Mar-13 6:26am    
HTML and C# do not work together!
HTML is for client side, on HTML pages you can use Javascript

C# is code that runs on the Server side! and there it is fairly simple to perform actions against a DB.

What are you needs exactly, you gave too little information in order to direct you correctly.
ravithejag 19-Mar-13 6:52am    
you can make javascript ajax call http://stackoverflow.com/questions/2356604/asp-net-javascript-ajax-call-how-to

 
Share this answer
 
Comments
ravithejag 19-Mar-13 6:50am    
http://stackoverflow.com/questions/2356604/asp-net-javascript-ajax-call-how-to
You have to use ASP.Server controls like button and textbox. So that you can make connection with database and do you work.
Another way is using html controls, you have to use submit button
and form tag like,

HTML
<form action="processing page">
....
.
.
<input type="submit">
.
.
</form>
 
Share this answer
 
v2

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