0
Changes in __doPostback in .NET 1.1 to .NET 2.0
Posted by Sameer on November 27, 2008 in Uncategorized | ∞
Before and After If you manually want to simulate a postback, Here is how you would stick together a string manually calling __doPostBack in .NET 1.1 In this case its making a link in a particular linkbutton control inside a datagrid. __doPostBack in .NET 1.0 string link = "<a href=\"javascript:__doPostBack('dataGridCart$_ctl" + i + "$linkButton','');\""; __doPostBack [...]