P Paul Oct 29, 2008 #1 Just wondering if there is a way to cause a post back with a javascript function? Thanks.
G George Oct 29, 2008 #2 Pretty much that is the only way Dump any empty (not text propery specified ) LinkButton on the form and check out generated HTML. You will see somehting like OnClick="__doPostBack('$LinkButton1');" that is the way George.
Pretty much that is the only way Dump any empty (not text propery specified ) LinkButton on the form and check out generated HTML. You will see somehting like OnClick="__doPostBack('$LinkButton1');" that is the way George.
L Lloyd Sheen Oct 29, 2008 #3 Paul said: Just wondering if there is a way to cause a post back with a javascript function? Thanks. Click to expand... Check out the __doPostBack javascript function. This is what gets called on a regular asp.net postback. You can set the parameters to values. Hope this helps LS
Paul said: Just wondering if there is a way to cause a post back with a javascript function? Thanks. Click to expand... Check out the __doPostBack javascript function. This is what gets called on a regular asp.net postback. You can set the parameters to values. Hope this helps LS
P Paul Oct 29, 2008 #4 thanks for the responses, I need to pass parameters to the URL string on the post back so thinking a few of these methods should work.
thanks for the responses, I need to pass parameters to the URL string on the post back so thinking a few of these methods should work.