Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Command1.CommandType = CommandType.StoredProcedure
Command1.Connection = MyConnection
Command1.CommandText = "some_sp"
Command1.Parameters.Add("@Param1", 100)
---------------------------------------
Command1.Parameters.Clear
Command1.CommandType = CommandType.Text
Command1.Connection = MyConnection
Command1.CommandText = "SELECT Something FROM Something"