Initial import
This commit is contained in:
parent
0c865416ca
commit
04804b89a9
279 changed files with 12945 additions and 0 deletions
7
web/Views/Home/AOEMail.aspx
Normal file
7
web/Views/Home/AOEMail.aspx
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<%@ Page Language="C#" MasterPageFile="~/Models/App.master" Inherits="System.Web.Mvc.ViewPage" %>
|
||||
<asp:Content ID="headContent" ContentPlaceHolderID="head" runat="server">
|
||||
</asp:Content>
|
||||
<asp:Content ID="headerContent" ContentPlaceHolderID="header" runat="server">
|
||||
</asp:Content>
|
||||
<asp:Content ID="MainContentContent" ContentPlaceHolderID="MainContent" runat="server">
|
||||
</asp:Content>
|
||||
8
web/Views/Home/Index.aspx
Normal file
8
web/Views/Home/Index.aspx
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage" MasterPageFile="~/Models/App.master"%>
|
||||
<asp:Content ContentPlaceHolderID="titleContent" ID="titleContent" runat="server">Indexe</asp:Content>
|
||||
<asp:Content ContentPlaceHolderID="MainContent" ID="MainContentContent" runat="server">
|
||||
<div>
|
||||
<%= Html.ActionLink("blogs","Index","Blogs") %>
|
||||
</div>
|
||||
</asp:Content>
|
||||
|
||||
3
web/Views/Home/NCView.aspx
Normal file
3
web/Views/Home/NCView.aspx
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
<%@ Page Title="" Language="C#" Inherits="System.Web.Mvc.ViewPage" MasterPageFile="" %>
|
||||
|
||||
|
||||
12
web/Views/Home/NView.aspx
Normal file
12
web/Views/Home/NView.aspx
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage" %>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head runat="server">
|
||||
<title></title>
|
||||
</head>
|
||||
<body>
|
||||
<div>
|
||||
|
||||
<div>
|
||||
</body>
|
||||
</html>
|
||||
17
web/Views/Home/Thanks.ascx
Normal file
17
web/Views/Home/Thanks.ascx
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %>
|
||||
<p>
|
||||
<% var ts = ((string[,])ViewData["Thanks"]);
|
||||
if (ts != null) { %>
|
||||
<hr/><i> Powered by</i><br/>
|
||||
<% for (int i = 0; i <= ts.GetUpperBound(0); i++)
|
||||
{
|
||||
|
||||
%>
|
||||
<%= "<a href=\""+Html.Encode(ts[i,1])+"\" class=\"socle\">"
|
||||
+ ts[i,0]+"</a>"
|
||||
%>
|
||||
<%
|
||||
}}
|
||||
%>
|
||||
</p>
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue