Click here to Skip to main content
15,900,815 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Can any one tell me that System.Net.WebClient.OpenRead(Uri address) executes at client end or server end in web application ?
Posted
Comments
Gaurav Gupta A Tech Guy 24-Dec-13 2:48am    
I woukd like to ask you that i want to execute a SMS URL by this method at server end. because may be there are permission of SMS api url at server end only ?

1 solution

It "executes" on the computer you run the code from.

If you are asking about code inside the webpage that you are requesting, any server-side code that renders the page will execute, but it will not execute client side code (javascript or whatever). The execution of the client side code is up to the client to execute. When you request the page using low-level requests like this, it would be up to you to run any client side code.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900