I am using spgridview with spgridviewpager in update panel. I need to postback using c# in aspx page. I used button field in the spgridview. When i clicked on the button field, i need to raise the postback event using c# or javascript.

Can any have an idea how to do it programatically?

link|improve this question

60% accept rate
why you need to do postback? – Muhammad Akhtar Apr 7 '11 at 5:19
feedback

3 Answers

up vote 2 down vote accepted

i think u can use triggers after the content template of update panel.

one more simple suggestion added:

if u just want to cause a postback and to do nothing after postback simply double click the button in the design view u will get an onbuttonclick event generated in the code behind page.dont write anything inside that button click event block .the page will get posted onclicking the button.if u want to implement something write the code inside button click event.

do tick my answer if found usefull

link|improve this answer
do you have an idea how to do it programatically – Ramesh.kbvr Apr 7 '11 at 6:41
many others ways are there ypu can also use the onclientclick event handler of ur button ,u can use the postbackurl of ur button but it depends all on what u actually want to do with the postback.i can give explained solution if u give the full scenario – Robin Agrahari Apr 7 '11 at 8:24
feedback

Since there are some quite good articles on the web explaining this, let me answer your question with a link:

link|improve this answer
feedback

go to the button property u will find postback url .. if not then use rowCommand to get the button event rise

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.