I have a saved url in a database linked to a windows form. How do I take the url and open a web broswer?
this is where its stored
m_dtMedia.Rows[m_rowPosition]["File_Path"]
what I want is when you click a button for the web broswer to oepn up.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can just start a new process with the url as the target/filename:
This will have the effect of using the default browser to load the url.