Opening an HTML page with button click

kokas

Member
Joined
Jul 21, 2005
Messages
12
Programming Experience
1-3
Hello

I want to display information in my database, not in a datagrid or other control, but in an HTML page.
What is the easiest way of achieving this?


Thanks
 
Is your question regarding opening the webPage or creating the webpage?
To open the webPage use
VB.NET:
Process.Start("www.domainName.com/pageName.aspx")
Creating the webPage is a large topic. There are several categories on this forum that have posts related to that. Look in the Data Access and ASP.NET categories.
 
As I said, it's a large topic. Look around in the Data Acces and ASP.NET categories and if you have specific questions, feel free to post them.
Also, know that you must have a web server installed (something like IIS) in order to serve the HTML page.
 
Back
Top