ASP.NET how to use __doPostBack from Custom JavaScript with Master/Content Pages
- by harrije
In a simple aspx page I can have a custom JavaScript function postback as described
in http://www.xefteri.com/articles/show.cfm?id=18 The simple page uses a linkbutton:
<asp:LinkButton id="CreateFile" runat="server" onclick="CreateFile_Click" />
with code behind that has the VB subroutine:
Sub CreateFile_Click(ByVal sender As…