Hi there, I have the following code
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
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;
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