Update of /cvsroot/springnet/Spring.Net/examples/Spring/Spring.WebQuickStart/src/Spring.WebQuickStart.2005/DI
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv12311/DI
Added Files:
Default.aspx Default.aspx.cs
Log Message:
improved WebQuickStart examples
fixed SPRNET-344
fixed SPRNET-696
fixed SPRNET-706
--- NEW FILE: Default.aspx.cs ---
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class DI_Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
}
--- NEW FILE: Default.aspx ---
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="DI_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>Spring.NET Web Framework Quick Start Guide - Dependency Injection</title>
</head>
<body>
<h2><a href="../Default.aspx">Welcome to Spring.NET Web Framework Quick Start Guide</a></h2>
<div>
<h2>Dependency Injection</h2>
<p>
Samples in this section demonstrate, how dependency injection is done in web projects.
</p>
<h3><a href="HelloWorld/Default.aspx">Hello World!</a></h3>
<p>The inevitable "Hello World!" example demonstrates DI for pages, usercontrols and webcontrols</p>
<h3><a href="NestedContexts/Default.aspx">Nested Contexts</a></h3>
<p>This sample shows, how contexts are nested in webapplications</p>
</div>
</body>
</html>
|