Users Pricing

forum

Home Forums __doPostBack clears all text fields – MindStick

__doPostBack clears all text fields

Anonymous User 2241 20 Nov 2014

I want to call an ASP.NET code behind method from JQuery and I use it by calling another hidden button OnClick attribute.

As you see I have to use __doPostBack function which clears all my form inputs after code behind code is done.

Is there a way to prevent emptying my inputs?

Thanx in advance

ASPX:

<asp:Button runat="server" ClientIDMode="Static" UniqueID="SubmitBTN" ID="SubmitBTN" OnClick="Submit_Click" Text="Submit" CssClass="DontShow" />
button type="button" runat="server" onclick="submitfunc()" class="submit">Submit</button>

JQuery:

function submitfunc() {
     __doPostBack('<%= SubmitBTN.UniqueID %>', '');
}


1 Answers

Markdown for AI

A clean, structured version of this page for AI assistants and LLMs.

Open .md