I frnds am .net developer, developing a web application it is online site,
My Question : while user login and accessing web site can I possible
to upload new dll in bin folder (with out recycle IIS, log in user can continue without and distraction) is it possible means pls gide me..
and What is assembly can i achieve using assembly.
Thanks in advance.
Sunny SharmaPosted Oct 4, 2013, 1:24 AM
No, this is not possible. Your new DLL may have some new flow, functionality or anything. If you're uploading new DLL to bin folder, the application is supposed to recycle the State in order to adapt the changes that may take place after your update.
Usually an assembly corresponds to a single file, but it doesn't have to - it may have multiple files, having one main or master file which knows where all the other bits are.
Single-file assemblies are usually DLLs or EXE files. If you've got a normal class library and you just want to send it to the other side, the DLL is what you want. "
HTH :)