Regarding Bin folder creation in ASP.NET 2.0
-
Hi Friends , I have problem regarding creation bin folder in ASP.NET 2.0 which includes .DLL and assemblies for deploying the website.Whenever , I am compiling and running my asp.net 2.0 application , it won't create bin folder in the application.And I want to create bin folder automatically , as like in .NET versio 1.1 Please, suggest me that , what's the solution of this problem? Thanking You, In Advance.
param
-
Hi Friends , I have problem regarding creation bin folder in ASP.NET 2.0 which includes .DLL and assemblies for deploying the website.Whenever , I am compiling and running my asp.net 2.0 application , it won't create bin folder in the application.And I want to create bin folder automatically , as like in .NET versio 1.1 Please, suggest me that , what's the solution of this problem? Thanking You, In Advance.
param
In ASP.NET 2.0,by Default, the Compiled Version of your Web Application (.dll file) is not stored in the 'Bin' directory of ur Application Folder like Older Version. Also it will not stroed in the same name of your Web Application. It may be stored in some Temporary Folder, with a Random name ( xxxx.dll).
Regards, Jay
-
Hi Friends , I have problem regarding creation bin folder in ASP.NET 2.0 which includes .DLL and assemblies for deploying the website.Whenever , I am compiling and running my asp.net 2.0 application , it won't create bin folder in the application.And I want to create bin folder automatically , as like in .NET versio 1.1 Please, suggest me that , what's the solution of this problem? Thanking You, In Advance.
param
The compiling model is changed in the ASP.NET 2.0, and like someone said your source files by default are dynamically compiled to the assemblies stored in the temp folder of your ASP.NET application. I may refer you to a couple of links that can give you more information. ASP.NET Web Site Precompilation [^] Codebehind and Compilation in ASP.NET 2.0[^] Also, if you want to have the output assembly of the project generated in the Bin folder, you may use the Web Project 2005[^]
-
Hi Friends , I have problem regarding creation bin folder in ASP.NET 2.0 which includes .DLL and assemblies for deploying the website.Whenever , I am compiling and running my asp.net 2.0 application , it won't create bin folder in the application.And I want to create bin folder automatically , as like in .NET versio 1.1 Please, suggest me that , what's the solution of this problem? Thanking You, In Advance.
param
Hi Param, Below two articles will help you. You need to understand this two Articles.:) http://msdn2.microsoft.com/en-us/library/ms229863.aspx http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnaspp/html/aspnet\_merge\_exe.asp
Regards, Jay