ASP.Net Development
-
Hello All, I am New in ASP.Net But currently I am working on Desktop Applications. Now i have decided to Design Web Application. I want to develop a Music Web site using ASP.Net and SQL Server as back End. In this Scenario I have a single problem that, if I have uploaded some audio and video files on a server (not my domain that is rapid share or megaupload) then is it possible in ASP.Net to Play them or download them without leaving focus from my web page. Because i have already uploaded files on sharing server and this time i have less space on my domain. Thanks in Advance. Abdul Rouf
Abdul Rouf
-
Hello All, I am New in ASP.Net But currently I am working on Desktop Applications. Now i have decided to Design Web Application. I want to develop a Music Web site using ASP.Net and SQL Server as back End. In this Scenario I have a single problem that, if I have uploaded some audio and video files on a server (not my domain that is rapid share or megaupload) then is it possible in ASP.Net to Play them or download them without leaving focus from my web page. Because i have already uploaded files on sharing server and this time i have less space on my domain. Thanks in Advance. Abdul Rouf
Abdul Rouf
Yes. You can use AJAX for that. I'd prefer the raw AJAX. Use javascript to open your async connection with the server with XmlHttp or Activex object (for IE). Set your target as another aspx page or PHP page. Do all your processing in that page. Generate a response and then use responseText to retrieve it in ur page. No need to refresh at all..
-
Yes. You can use AJAX for that. I'd prefer the raw AJAX. Use javascript to open your async connection with the server with XmlHttp or Activex object (for IE). Set your target as another aspx page or PHP page. Do all your processing in that page. Generate a response and then use responseText to retrieve it in ur page. No need to refresh at all..