How use usercontrol button in another page

liunx

Guest
I am using a usercontrol with buttons (add,delete,search-->>> all are html input buttons). in an asp.net page.
i am using this usercontrol in another webpage where i have to write the code for delete , save etc.

can any one help me to do it

thanks
rajeshYes, you will need to add methods to your user control or code behind page for the user control (if you are using one).

For each of the buttons you will need to specify an OnServerClick function.

For each of the functions you will need to add code that will process the values from your controls.

God Speed.
 
Back
Top