System.Web.HttpServerUtility.Execute C# (CSharp) Method

Execute() public method

public Execute ( string path, TextWriter writer ) : void
path string
writer System.IO.TextWriter
return void
		public void Execute (string path, TextWriter writer)
		{
			Execute (path, writer, true);
		}

Same methods

HttpServerUtility::Execute ( IHttpHandler handler, TextWriter writer, bool preserveForm ) : void
HttpServerUtility::Execute ( IHttpHandler handler, TextWriter writer, bool preserveForm, string exePath, string queryString, bool isTransfer, bool isInclude ) : void
HttpServerUtility::Execute ( string path ) : void
HttpServerUtility::Execute ( string path, TextWriter writer, bool preserveForm ) : void
HttpServerUtility::Execute ( string path, TextWriter writer, bool preserveForm, bool isTransfer ) : void
HttpServerUtility::Execute ( string path, bool preserveForm ) : void

Usage Example

Example #1
0
 public override void Execute(string path)
 {
     w.Execute(path);
 }
All Usage Examples Of System.Web.HttpServerUtility::Execute