
* LocalizedText.fr.resx: * RssFeedsFormatter.cs: * LocalizedText.Designer.cs: * Web.csproj: * Contact.aspx: * AOEMail.aspx: * AssemblyInfo.aspx: * ReferencedAssemblies.aspx: refactoring * RssFeeds.cs: Rss feeds in progress * HomeController.cs: - refactoring - fixes contact page * style.css: css for textarea and input * Index.aspx: Contact & Assembly info in index * YavscModel.csproj: Rss feeds
13 lines
433 B
Plaintext
13 lines
433 B
Plaintext
<%@ Page Title="Yavsc - indexe" Language="C#" Inherits="System.Web.Mvc.ViewPage<IEnumerable<System.Reflection.AssemblyName>>" MasterPageFile="~/Models/App.master"%>
|
|
<asp:Content ContentPlaceHolderID="MainContent" ID="MainContentContent" runat="server">
|
|
<p><%= GetType().Assembly.FullName %></p>
|
|
<p>
|
|
<ul>
|
|
<% foreach (System.Reflection.AssemblyName item in Model) { %>
|
|
<li><%= item.FullName %></li>
|
|
<% } %>
|
|
</ul>
|
|
</p>
|
|
</asp:Content>
|
|
|