Handling ASP .NET in Web Server

sureshsundar007

Newcomer
Joined
Jun 14, 2004
Messages
2
Hi,

I'm writing a Webserver in C# with ASP .NET support.I could able to execute simple ASP .NET pages with the help of ApplicationHost,SimpleWorkerRequest and HttpRuntime Classes.

I could able to handle the simple ASP .Net pages and pages with querystring like this...

StringWriter wr = new StringWriter();
HttpWorkerRequest worker = new SimpleWorkerRequest(filename,querystring,sr);
HttpRunTime.ProcessRequest(worker);

But i dont know how to handle the hidden data(such as username and password's) coming with _VIEWSTATE object.

How to pass the hidden data(precisely _VIEWSTATE object) to the SimpleWorkerRequest?

Can any one tell me how to handle this?

Thanks,
Suresh.
 
Back
Top