G
Guest
Help, why won't the following code work (taken from an ASPX page).
//begin code
private void btnCapture_Click(object sender, System.EventArgs e)
{
SHDocVw.InternetExplorer ie = new SHDocVw.InternetExplorerClass();
ie.Visible = true;
//some more operations
}
//end code
Can I not launch IE in this way? why not?
//begin code
private void btnCapture_Click(object sender, System.EventArgs e)
{
SHDocVw.InternetExplorer ie = new SHDocVw.InternetExplorerClass();
ie.Visible = true;
//some more operations
}
//end code
Can I not launch IE in this way? why not?