I\'m trying to create an asyncrhonous postback in ASP.NET using __doPostBack(), but I have no idea how to do it. I want to use vanilla JavaScript.
__doPostBack()
Some
This is how I do it
public void B_ODOC_OnClick(Object sender, EventArgs e) { string script=""; Page.ClientScript.RegisterStartupScript(this.GetType(),"JsOtherDocuments",script); }