www.domainname.com/TSweb.html" /> How can i get remote.domainname.com point to a page on a URL eg: www.domainname.com/TSweb.html - Problems and solutions to issues related to Software : Business, Database, Firewalls, Office, Graphics, Security, System, Server.

Question : How can i get remote.domainname.com point to a page on a URL eg: www.domainname.com/TSweb.html

I want to setup a sub domain eg remote.domainname.com to redirect customers to a page of a website (eg. www.domainname.com/tsweb.html) which will allow them to use the remote desktop activeX control.

Is this possible?

If so how do I go about achieving this?

Thanks in advance

Answer : How can i get remote.domainname.com point to a page on a URL eg: www.domainname.com/TSweb.html

It seems your page is getting post back so your old value get restored in page load. You can check if page is getting post back then not to set value. You can do this by checking Page.IsPostBack property  in page load.
For Example
Sub Page_Load()
 If Page.IsPostBack then
     ''Do nothing
 else
   selectCountry.selectedindex = 2
 end if

end sub

Random Solutions  
 
programming4us programming4us