Visual Studio.NET -> ASP.NET problem
-
I installed trial version of Visual Studio.NET and i tried doing a simple example in ASP.NET using VB.Net.Below is my problem: I have a 'button' WebForm control and a 'label' WebForm control in a aspx file.I added appropriate code inside the .vb file like when a user clicks on button then it should display hello world on the label. When i tried running the sample i could see only blank page.All i see is the Label ID.Is there any settings i need to modify inorder for the sample to run.Even i downloaded one basic sample from Microsoft site and could not be able to run the sample[I mean i could not see the web page output].
-
I installed trial version of Visual Studio.NET and i tried doing a simple example in ASP.NET using VB.Net.Below is my problem: I have a 'button' WebForm control and a 'label' WebForm control in a aspx file.I added appropriate code inside the .vb file like when a user clicks on button then it should display hello world on the label. When i tried running the sample i could see only blank page.All i see is the Label ID.Is there any settings i need to modify inorder for the sample to run.Even i downloaded one basic sample from Microsoft site and could not be able to run the sample[I mean i could not see the web page output].
You may have encountered a problem installing the ASP.NET ISAPI filters during your installation. You can complete you installation manually for a command prompt: Step 1: Select [Start], [Programs], [Microsoft Visual Studio .NET (or .NET 2003)], [Visual Studio .NET (or .NET 2003) Command Prompt] Step 2: Switch to your installation location... cd c:\windows\microsoft.net\framework [<-PRESS ENTER] Step 3: Run and directory to locate the directory for your current version of the .NET framework. You may have multiple version. I would select the most recent/highest version number. In my case, I would type cd v1.1.4322 [<-PRESS ENTER] Step 4: Enter the following command at the command prompt to register ASP.NET into your web server. aspnet_regiis -i When complete, you should be able to execute your sample application without additional coding.