how can i run ~~~.aspx page without popup in c#?
-
I want to run some url and don't want to popup.
Below code is calling default2.aspx but do not execute javascript which is in the default2.aspx.
url = "http://localhost:56286/PIS\_INTERFACE/default2.aspx";
URLReq = (HttpWebRequest)WebRequest.Create(url);
URLRes = (HttpWebResponse)URLReq.GetResponse();Below code is default2.aspx.
<script type="text/javascript">
alert("default2.aspx");
</script>
</body>hi My english is a little. anyway, nice to meet you~~ and give me your advice anytime~
-
I want to run some url and don't want to popup.
Below code is calling default2.aspx but do not execute javascript which is in the default2.aspx.
url = "http://localhost:56286/PIS\_INTERFACE/default2.aspx";
URLReq = (HttpWebRequest)WebRequest.Create(url);
URLRes = (HttpWebResponse)URLReq.GetResponse();Below code is default2.aspx.
<script type="text/javascript">
alert("default2.aspx");
</script>
</body>hi My english is a little. anyway, nice to meet you~~ and give me your advice anytime~
-
What exactly you are trying to achieve
============================================ The grass is always greener on the other side of the fence
i think he's trying to execute the javascript on the page, but the
alert()
on the page don't show up, so he's confused i think the method he's using only download the html, don't parse or execute any javascript on it, but i don't know how to help him... :(I'm brazilian and english (well, human languages in general) aren't my best skill, so, sorry by my english. (if you want we can speak in C# or VB.Net =p)
-
What exactly you are trying to achieve
============================================ The grass is always greener on the other side of the fence
I want to run some page and don't want to popup. Just run page, because i want user to don't know.
hi My english is a little. anyway, nice to meet you~~ and give me your advice anytime~