executing url without launching a new browser window
-
I have a problem caused by an earlier design of a program developed by an external vendor. We have an sms system that accepts request via URL parameters (Eg: http://internalserver/sms.aspx?hp=3453453+msg=testtest). I am trying to make this a more user friendly experience and thus have came out with a webform that accepts a mobile number and the message. Whenever the user clicks on the "Send" button, I would do the followng: 1) Create the URL and initialise it accordingly. Eg: http://internalserver/sms.aspx?hp=3453453+msg=usersmessage 2) The webpage will then launch this url in a new browser window. The problem is if a user would like to send multiple sms, a large number of new browser window will open which is not ideal. Is there a way in ASP.NET to execute a url without having to launch another browser window or redirect the current one. Note: The earlier system cannot be changed.
-
I have a problem caused by an earlier design of a program developed by an external vendor. We have an sms system that accepts request via URL parameters (Eg: http://internalserver/sms.aspx?hp=3453453+msg=testtest). I am trying to make this a more user friendly experience and thus have came out with a webform that accepts a mobile number and the message. Whenever the user clicks on the "Send" button, I would do the followng: 1) Create the URL and initialise it accordingly. Eg: http://internalserver/sms.aspx?hp=3453453+msg=usersmessage 2) The webpage will then launch this url in a new browser window. The problem is if a user would like to send multiple sms, a large number of new browser window will open which is not ideal. Is there a way in ASP.NET to execute a url without having to launch another browser window or redirect the current one. Note: The earlier system cannot be changed.