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.
dim sqlcon as new sqlconnection
dim sqladp as new sqldatatadapter
dim sqlcom as new sqlcommand
dim sqlcbu as new sqlcommandbuilder
dim dt as new datatable
sqlcon.connectionstring = "..."
sqlcon.open
sqlcom.connection = sqlcon
sqlcom.commandtext = "SQLselect"
sqladp.selectcommand = sqlcom
sqladp.fill(dt)