Question about dll in .NET 2005
-
Hi I hve created an online project using .NET 2003,Now I hve converted it to .NET 2005 (I am new to .NET2005) But when i converted it to 2005 the .dll is not in the bin folder. I tried to create an ASP.NET web project its showing APP_code folder, aspx and aspx.vb pages, and web.config. There is now global.aspx, bin folder etc. In that also there is no dll created. Wht happen to the dll and also what is this APP_code's purpose. When i debug my application using .NET 2005 the "http://localhost:1088/myproj/login.aspx" I hve created virtual directory but the port no is changing each time i debug the project how can i solve that earlier i hve to type http://localhost/myproj/login.aspx Can pls any body help me to solve this prblem its very important Thanks in Advance With regards Anitha
-
Hi I hve created an online project using .NET 2003,Now I hve converted it to .NET 2005 (I am new to .NET2005) But when i converted it to 2005 the .dll is not in the bin folder. I tried to create an ASP.NET web project its showing APP_code folder, aspx and aspx.vb pages, and web.config. There is now global.aspx, bin folder etc. In that also there is no dll created. Wht happen to the dll and also what is this APP_code's purpose. When i debug my application using .NET 2005 the "http://localhost:1088/myproj/login.aspx" I hve created virtual directory but the port no is changing each time i debug the project how can i solve that earlier i hve to type http://localhost/myproj/login.aspx Can pls any body help me to solve this prblem its very important Thanks in Advance With regards Anitha
The app_code is for putting classes you want compiled. Your pages do not get turned into a dll in 2005. I recommend that if it's urgent ( and most things here are ), you try doing a google to read up on changes in 2005.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
Hi I hve created an online project using .NET 2003,Now I hve converted it to .NET 2005 (I am new to .NET2005) But when i converted it to 2005 the .dll is not in the bin folder. I tried to create an ASP.NET web project its showing APP_code folder, aspx and aspx.vb pages, and web.config. There is now global.aspx, bin folder etc. In that also there is no dll created. Wht happen to the dll and also what is this APP_code's purpose. When i debug my application using .NET 2005 the "http://localhost:1088/myproj/login.aspx" I hve created virtual directory but the port no is changing each time i debug the project how can i solve that earlier i hve to type http://localhost/myproj/login.aspx Can pls any body help me to solve this prblem its very important Thanks in Advance With regards Anitha
micydon wrote:
Wht happen to the dll and also what is this APP_code's purpose.
In VS2005, Dll's won't be created automatically like VS2003. App_Code folder contains the classes that are needed for your site.
micydon wrote:
When i debug my application using .NET 2005 the "http://localhost:1088/myproj/login.aspx" I hve created virtual directory but the port no is changing each time i debug the project how can i solve that earlier i hve to type http://localhost/myproj/login.aspx
Typing http://localhost/myproj/login.aspx is old method. You can do this in VS2005 by creating a new website, don't go for filesystem based application
Navaneeth My Website