Many a time while developing a web application you may come accross “Server application unavailable”
When you get this error in Windows XP make sure you have given ASPNET user sufficient rights on your physical application folder, it mainly requires read permission.
When you get this error in Windows 2003 server you can right click your virtual directory – permission – grant aspnet user sufficient rights there.
If the above solution doesn’t work here is another alternative,
You could try editing the Machine.config (located in
C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\CONFI G\).
Look for a key userName=”machine”. If you set it to “SYSTEM”
instead the aspnet_wp.exe runs with a different user (with
higher privileges).
Hope this helps
tags: .Net, ASP.Net, asp.net 1.1, asp.net 1.1 server error, IIS, server unavailable, Virtual Directory Error, vs.netOne of my team member, kunal, was facing a problem while creating the setup project for v 20 using VS 2008. Even after just changing the target framework while creating the project did no help so had to search for the solution, and the solution that solved our problem is as follows,
1) Create a windows application project with target framework as v2.0

Select Target Framework
2) Create Setup and deployment project and select target framework as v2.0

Target Framework for Setup
3) Right-Click on setup project Name and select Properties, under properties select Prerequisites

Select Prerequistes
4) Check .NET framework 2.0 and uncheck .NET framework 3.5

Select Framework in Prerequisite
5) Under Solution Explorer double click on Microsoft.NET framework under
Setup project.

Select the Framwork to change the version
6) Right-Click on .NET framework select properties and change the version to v2.0…

Change Framework Version
tags: .net framework, application project, Change target framework, deployment project, Framework, framework version, microsoft net framework, Setup for Framework v2.0, Setup Project, Target Framework, vs.net, windows application
ASP.Net menu controls breaks in Google Chrome and works fine in other browsers. Here is the hack to make it work in Google Chrome as well,
if (Request.UserAgent.IndexOf("AppleWebKit") > 0)
Request.Browser.Adapters.Clear();
Just add this code on your page load and the menu control will start working fine in Google Chrome as well.
Also some times the hover menus don’t work on IE8 to make it work on IE8 you need to set
in DynamicMenuStyle property of the menu control.
Hope this helps