Hi. I just followed a tutorial that created a database and two .aspx web forms.. And it runs perfectly when I view the asp pages in my browser. But when I FTP'd the files:
Default.aspx
AddEntry.aspx
And my entire App_Data folder (with the .mdf and .ldf files)
It doesn't view at the URL. For example.. When I go to http://www.mysite.com/project/Default.aspx it doesn't load my web form... It just displays raw text saying....
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_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>
Etc. How do I properly publish it so it works like when I view it locally?