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

Execute() public method

public Execute ( string path ) : void
path string
return void
		public void Execute (string path)
		{
			Execute (path, null, 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, TextWriter writer ) : 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

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