How should I check whether IIS is installed or not?

To verify if IIS is installed, go to your ’Add or Remove Programs’ utility in the Control panel and click on the ’Add/Remove Windows Components’ in the side menu. On XP Pro and below, you should see an item called ‘Internet Information Services (IIS)’. If this is checked, IIS should be installed. On Win2K3, you’ll see ‘Application Server’. If this is checked, select it and then click ’Details’. Another form should open which will contain ‘Internet Information Services (IIS)’. If it is checked, IIS should be installed.

Why are Server control tags shown in the browser instead of the controls it represents?

This is because the server control tags were not converted into their respecting HTML element tags by ASP.Net. This happens when ASP.Net is not properly registered with IIS. .Net framework provides an Administration utility that manages the installation and uninstallation of multiple versions of ASP.NET on a single machine. You can find the file in C:\WINNT\Microsoft.NET\Framework\v**\aspnet_regiis.exe use the command: aspnet_regiis.exe -u —> to uninstall current asp.net version. use the command: aspnet_regiis.exe -i —> to install current asp.net version.