Use ProcessPostDataSecondTry ?

  • Thread starter Thread starter localhost
  • Start date Start date
L

localhost

I want to use ProcessPostDataSecondTry in my code-behind, but can't
find a (C#) programming example. Where can I look?

Thanks.
 
Hi Localhost,

As for the ProcessPostDataSecondTry(); method you mentioned, do you mean
the one mentioned in the following tech article?

#The ASP.NET HTTP Runtime
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnaspp/html
/dngrftheaspnethttpruntime.asp

If so , I think this one is just a friendly name of the "ProcessPostData"
method in the System.Web.UI.Page class which is a private method. And this
is called by the page class internally which we needn't manually use it.
For detailed info, you can use the .NET Reflector to have a look at its
code:

#in System.Web.UI.Page class:
private void ProcessPostData(NameValueCollection postData, bool
fBeforeLoad);


Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
 
Back
Top