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
vishalmishra wrote: i think we need to implement cookies, but dunno how to use them.. ? You don't need this, but if you did, google would solve the problem in seconds. vishalmishra wrote: how to use login n logout in a multiuser environment ? i What you really need is session state ( hint: google ). vishalmishra wrote: 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 ? Get the user to do the follow: control panel/add/remove programs/Download Accelerator Plus/Remove. You can't control what happens on the client end with code on the server side, nor can you change if the client has another program associated with the media files you're sending. Christian Graus - Microsoft MVP - C++