About WebServer
-
I wanna know, wich files i have to upload. Only the Server.asmx? or Server.dll ? or Server.asmx and Server.asmx.cs... and how i use this DLL? Thanks. :)
If you want to modify the code, you'll need the Server.asmx.cs, if you just want to reference the dll in a project, then use Server.dll. Could you be more specific in what you are trying to do? The question is a bit vague.
R.Bischoff .NET, Kommst du mit?
-
I wanna know, wich files i have to upload. Only the Server.asmx? or Server.dll ? or Server.asmx and Server.asmx.cs... and how i use this DLL? Thanks. :)
If you're doing this in VS.NET, just click on the Copy Project button at the top of the Solution Explorer when your project is selected. It asks which you want to copy. Typically in a deployment scenario you just copy files necessary for the application to run. This would be the Server.asmx file and the Server.dll file, which either goes into the bin sub-directory of the application root directory (/, /myapp, whatever) or the Global Assembly Cache (GAC) making it easily accessible for web applications that require it and easy to version (since the GAC stores all versions of an assembly that you install in it, unless of course you were to remove certain versions).
Microsoft MVP, Visual C# My Articles