c# - Page Directives Inherits -
i having lots of trouble getting started today... keep getting
parser error description: error occurred during parsing of resource required service request. please review following specific parse error details , modify source file appropriately. parser error message: not load type 'webapp5.landing'. source error: line 1: <%@ page language="c#" autoeventwireup="true" codebehind="landing.aspx.cs" inherits="webapp5.landing" %> line 2: line 3: <!doctype html> here code behind....
using system; using system.collections.generic; using system.linq; using system.web; using system.web.ui; using system.web.ui.webcontrols; namespace webapp5 { public partial class landing : system.web.ui.page { protected void page_load(object sender, eventargs e) { } } } and here page...
<%@ page language="c#" autoeventwireup="true" codebehind="landing.aspx.cs" inherits="webapp5.landing" %> <!doctype html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> </head> <body> <form id="form1" runat="server"> <div> </div> </form> </body> </html> i know missing easy here.... cant seem working? ideas on how page run?
Comments
Post a Comment