Share via


webStartAction Enum

Definition

Specifies how the Web application is started when the user runs the Web site in Visual Studio.

public enum class webStartAction
[System.Runtime.InteropServices.Guid("557C19E5-8624-47FE-8080-C37F77AC4A47")]
public enum webStartAction
[<System.Runtime.InteropServices.Guid("557C19E5-8624-47FE-8080-C37F77AC4A47")>]
type webStartAction = 
Public Enum webStartAction
Inheritance
webStartAction
Attributes

Fields

webStartActionCurrentPage 0

The currently selected Web page is used to start the application.

webStartActionNoStartPage 4

A connection to the Web server is established, but no other action is taken. The browser is not launched.

webStartActionProgram 2

The StartProgram property is used to start the Web application. This property uses arguments from the StartArguments property. The working directory is specified by the StartWorkingDirectory property.

webStartActionSpecificPage 1

The page specified by the StartPage property is used to start the Web application. You can manually add a query string in order to pass parameters to the page.

webStartActionURL 3

The URL specified in the StartURL property is used to start the Web application. The browser will be launched using this URL.

Applies to