Hi,
im using asp.net with c#
i want to call a server side function immediately after the page loads.for eg. it should be like this
.Is this possible?
im using asp.net with c#
i want to call a server side function immediately after the page loads.for eg. it should be like this
Code:
public partial class test : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
....
}
call the function
function()
{
....
}
}
Comment