I am writing a VB.Net program in an .aspx page that searches for a particular .htm file. Once the file is found, I'd like to launch the .htm file in the client browser.

Can this be done from my server-side code?

Recommended Answers

All 2 Replies

Redirect method.

Response.Redirect("uri")

Thank you. That is precisely what I needed.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.