Interacting with web page controls

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mbewers1
    New Member
    • Feb 2009
    • 68

    Interacting with web page controls

    Hi there, I have the following code

    Code:
    String strResult;
            WebResponse objResponse;
            WebRequest objRequest = HttpWebRequest.Create(strURL);
            objResponse = objRequest.GetResponse();
    
            using (StreamReader sr = new StreamReader(objResponse.GetResponseStream()))
            {
                strResult = sr.ReadToEnd();
                sr.Close();
            }
            return strResult;
    which embeds an external web page (DOI Resolver) into my own site, the screenshot of which is attached.

    What I can't understand is how is it possible to code a means to allow the user to interact with the controls of the website e.g. - pressing 'Go' should redirect them to the same page as if this site were being used on its own.

    Matt
    Attached Files
Working...