G
Guest
I have a requirement, where a user will click on a button, and the Email new
message window will open up. The app will fill in the To: column from a
database.
I have gotten it to work, by using
Dim sEmail As String = "mailto:"
sEmail = sEmail & _
"(e-mail address removed);[email protected]"
HttpContext.Current.Response.Redirect(sEmail)
However, the web browser then gets a page cannot be displayed error. How do
I open the new mail window?
I also have the same issue with other web pages. How can I dynamically open
a web page in a new browser window?
message window will open up. The app will fill in the To: column from a
database.
I have gotten it to work, by using
Dim sEmail As String = "mailto:"
sEmail = sEmail & _
"(e-mail address removed);[email protected]"
HttpContext.Current.Response.Redirect(sEmail)
However, the web browser then gets a page cannot be displayed error. How do
I open the new mail window?
I also have the same issue with other web pages. How can I dynamically open
a web page in a new browser window?