Back to product page
- Introduction
- License agreement
- Classes
- Enumerations
- Exceptions
- WeOnlyDo.Server.WebServer
- WeOnlyDo.Server.WebHeader
- WeOnlyDo.Server.WebHeaders
- WeOnlyDo.Server.WebRequest
- WeOnlyDo.Server.WebResponse
- WeOnlyDo.Server.WebSessions
- WeOnlyDo.Server.WebSessionVar
- WeOnlyDo.Server.WebSessionVars
- WeOnlyDo.Server.WebUpload
- WeOnlyDo.Server.WebUploads
- WeOnlyDo.Server.WebUser
- WeOnlyDo.Server.WebUsers
- How to get support?
ExecuteASPX method
Execute ASP.Net WebPage and send it back to client.
Type
VoidSyntax
- C#
- VB.NET
Void ExecuteASPX();
Void ExecuteASPX(String PhysicalPath, String VirtualPath, String RelativeBinPath, String WebConfig);
The ExecuteASPX(PhysicalPath,VirtualPath,RelativeBinPath,WebConfig) syntax has these parts:
Void ExecuteASPX(String PhysicalPath, String VirtualPath, String RelativeBinPath, String WebConfig);
The ExecuteASPX(PhysicalPath,VirtualPath,RelativeBinPath,WebConfig) syntax has these parts:
PhysicalPath | Path specifying physical path to your Root folder where ASPx file is located. |
VirtualPath | Virtual path for which document will be executed. i.e: "/Default.aspx". |
RelativeBinPath | Virtual path for Bin directory. |
WebConfig | WebConfig file that should be used. Usually this is web.config file that holds web application settings and configuration. |
Sub ExecuteASPX()
Sub ExecuteASPX(ByVal PhysicalPath As String, ByVal VirtualPath As String, ByVal RelativeBinPath As String, ByVal WebConfig As String)
The ExecuteASPX(PhysicalPath,VirtualPath,RelativeBinPath,WebConfig) syntax has these parts:
Sub ExecuteASPX(ByVal PhysicalPath As String, ByVal VirtualPath As String, ByVal RelativeBinPath As String, ByVal WebConfig As String)
The ExecuteASPX(PhysicalPath,VirtualPath,RelativeBinPath,WebConfig) syntax has these parts:
PhysicalPath | Path specifying physical path to your Root folder where ASPx file is located. |
VirtualPath | Virtual path for which document will be executed. i.e: "/Default.aspx". |
RelativeBinPath | Virtual path for Bin directory. |
WebConfig | WebConfig file that should be used. Usually this is web.config file that holds web application settings and configuration. |