Click to See Complete Forum and Search --> : How use usercontrol button in another page


lrrajesh
06-07-2005, 01:45 AM
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
rajesh

Oak
06-13-2005, 08:32 AM
Yes, 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.