Help Needed !!! URGENT
-
i m developing a media on demand system, which is an ASP.NET Web Application.. 1) how to use login n logout in a multiuser environment ? i think we need to implement cookies, but dunno how to use them.. ? 2) in our web application, the client can play media(audio/video) files on his web page. on the server side, i ve embedded the windows media player on the VB.NET interface... and passing the URL of the media files dynamically to the windows media player... but if the client has Download Accelerator Plus, when he selects the file to play, the DAP(Download Accelerator Plus) pops up and start downloading these media files... how to disable this DAP from downloading the files on the client's system ? please help me... i need it badly
-
i m developing a media on demand system, which is an ASP.NET Web Application.. 1) how to use login n logout in a multiuser environment ? i think we need to implement cookies, but dunno how to use them.. ? 2) in our web application, the client can play media(audio/video) files on his web page. on the server side, i ve embedded the windows media player on the VB.NET interface... and passing the URL of the media files dynamically to the windows media player... but if the client has Download Accelerator Plus, when he selects the file to play, the DAP(Download Accelerator Plus) pops up and start downloading these media files... how to disable this DAP from downloading the files on the client's system ? please help me... i need it badly
- Your questions belong in the ASP.NET Forum since your working on an ASP.NET application. It don't matter what language you're writing it in. 2) If the client has this, you can't do anything about it! ASP.NET is a server-side only technology that generates HTML pages for a browser. If there was some JavaScript way of doing it, great!, I have no idea what it is, or if it's even possible. RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome
-
i m developing a media on demand system, which is an ASP.NET Web Application.. 1) how to use login n logout in a multiuser environment ? i think we need to implement cookies, but dunno how to use them.. ? 2) in our web application, the client can play media(audio/video) files on his web page. on the server side, i ve embedded the windows media player on the VB.NET interface... and passing the URL of the media files dynamically to the windows media player... but if the client has Download Accelerator Plus, when he selects the file to play, the DAP(Download Accelerator Plus) pops up and start downloading these media files... how to disable this DAP from downloading the files on the client's system ? please help me... i need it badly
as per your two points... 1. I suggest you to use session variables as cookies could be disabled by the client side and in that case your application will not work. So worry about sessions. not for cookies.. 2. As far the download accelarator is concerned it is its default behaviour to accept all in coming files other then related to web like htm,asp,jpg etc . I am not sure that you would be able to find any solution for this...I suggest you to use real player as it supports streaming and this might help you... best of luck