Hello friends. I am trying to develop an web app based on .net and asp. Therefore I did this tutorial:http://msdn.microsoft.com/es-es/library/ms243156.aspx (Walkthrough: Creating a Simple Web Application). Everything is working fine on localhost.
Then I tried to deply it to my webserver. I used the ftp method. Visual Studio says it is correct. But when I browse to the Dafault.aspx page i can see only this code on my screen:
What am i doing wrong? I am a little lost and would appreciate any help. Thanks in advance.Code:<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Default.aspx.vb" Inherits="ColorWebApp._Default" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> </head> <body> <form id="form1" runat="server"> <div> </div> <asp:RadioButtonList ID="RadioButtonList1" runat="server"> <asp:ListItem Selected="True">red</asp:ListItem> <asp:ListItem>blue</asp:ListItem> </asp:RadioButtonList> <asp:Button ID="Button1" runat="server" Text="Submit" /> </form> </body> </html>
A.


Reply With Quote





