Skip to main content

Posts

Showing posts with the label .Net 2.0 Questions

.Net 2.0 Questions

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 What are the Best practices for side-by-side execution of Framework 1.1 and 2.0? In ASP.NET, applications are said to be running side by side when they are installed on the same computer, but use different versions of the .NET Framework. Can I have VS.NET and the Visual Studio 6.0 insta...