I was wondering if anyone could explain this to me:
<%@ Page Title="Log In" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true"
CodeBehind="Login.aspx.cs" Inherits="greetwithus.Account.Login" %>
This is when I create a simple .net web application in visual studio. I obviously understand the title part, language part, but not the rest. I was wondering if someone could explain this line of code to me.
This is known as the
@Pagedirective, once you know they’re called directives, you can find help pretty easily 🙂MSDN has a full description of every atribute here:
http://msdn.microsoft.com/en-us/library/ydy4x04a.aspx
For your example (see the msdn link for even more detailed descriptions):
If you’re curious, there are other directives as well.