publishing web site to ftp server
-
hi all i'm new to ASP.Net I'm a having a problem publishing a site on an ftp server i've created a simple site which works locally on my computer. after I published the site I can see my files on the server also I see inside the bin folder a strange dll ( doesnt know where it came from) called 'App_Web_bp2muayj' (each time I publish my site I get a different file there) when I try to open my site from HTTP I get the following error: "Could not load the assembly 'App_Web_bp2muayj'. Make sure that it is compiled before accessing the page" I tried deleting the file, and still got the same error. also tried to delete the ASP.net temp files and it didnt work. what should I do ? Thanks
-
hi all i'm new to ASP.Net I'm a having a problem publishing a site on an ftp server i've created a simple site which works locally on my computer. after I published the site I can see my files on the server also I see inside the bin folder a strange dll ( doesnt know where it came from) called 'App_Web_bp2muayj' (each time I publish my site I get a different file there) when I try to open my site from HTTP I get the following error: "Could not load the assembly 'App_Web_bp2muayj'. Make sure that it is compiled before accessing the page" I tried deleting the file, and still got the same error. also tried to delete the ASP.net temp files and it didnt work. what should I do ? Thanks
Did you try creating a virtual directory? I think you might take a look into this : Beginner's Guide : Exploring IIS 6.0 With ASP.NET [^] ;)
Abhishek Sur **Don't forget to click "Good Answer" if you like this Solution.
My Latest Articles-->** Simplify Code Using NDepend
Basics of Bing Search API using .NET
Microsoft Bing MAP using Javascript -
Did you try creating a virtual directory? I think you might take a look into this : Beginner's Guide : Exploring IIS 6.0 With ASP.NET [^] ;)
Abhishek Sur **Don't forget to click "Good Answer" if you like this Solution.
My Latest Articles-->** Simplify Code Using NDepend
Basics of Bing Search API using .NET
Microsoft Bing MAP using Javascripthi Abhishek, yes, I have a virtual directory
-
hi Abhishek, yes, I have a virtual directory
I think there are a number of issues for which LoadAssembly fails. Do you have application pool defined for the Virtual Directory you are using is for .NET 1.1 and you have just published a new site in .NET 2.0. If this is the case, please separate the application pool. Create one application pool for sites in .NET 1.1 and another for .NET 2.0. IIS 6.0 cannot handle both of them simultaneously. :)
Abhishek Sur **Don't forget to click "Good Answer" if you like this Solution.
My Latest Articles-->** Simplify Code Using NDepend
Basics of Bing Search API using .NET
Microsoft Bing MAP using Javascript -
I think there are a number of issues for which LoadAssembly fails. Do you have application pool defined for the Virtual Directory you are using is for .NET 1.1 and you have just published a new site in .NET 2.0. If this is the case, please separate the application pool. Create one application pool for sites in .NET 1.1 and another for .NET 2.0. IIS 6.0 cannot handle both of them simultaneously. :)
Abhishek Sur **Don't forget to click "Good Answer" if you like this Solution.
My Latest Articles-->** Simplify Code Using NDepend
Basics of Bing Search API using .NET
Microsoft Bing MAP using Javascripthi Abhishek this is not the case. the application pool and my site are both using .NET 2.0. Thanks