form body var formBody = new Sys.StringBuilder(); formBody.append(this._scriptManagerID + ''='' + this._postBackSettings.panelID + ''&'');
var count = form.elements.length; for (var i = 0; i < count; i++) { // // Traverse the input elements to construct the form body // }
if (this._additionalInput) { formBody.append(this._additionalInput); this._additionalInput = null; }
var request = new Sys.Net.WebRequest(); // // prepare the web request object //
var handler = this._get_eventHandlerList().getHandler("initializeRequest"); if (handler) { var eventArgs = new Sys.WebForms.InitializeRequestEventArgs( request, this._postBackSettings.sourceElement); handler(this, eventArgs); continueSubmit = !eventArgs.get_cancel(); }