sprnet-840: fixed broken DI support w/ Server.Transfer()/Server.Execute()

This commit is contained in:
eeichinger
2008-10-06 13:09:03 +00:00
parent b25755d9df
commit e4f60e9c68
4 changed files with 51 additions and 31 deletions

View File

@@ -10,7 +10,7 @@
<h2><a href="../../Default.aspx">Welcome to Spring.NET Web Framework Quick Start Guide</a></h2>
<h2><a href="../Default.aspx">Dependency Injection</a></h2>
<div>
<h2>Hello World example</h2>
<h2><a href="splashpage.aspx">Hello World example</a></h2>
<form id="form1" runat="server">
<p>
This very simple web form demonstrates dependency injection on pages and controls.

View File

@@ -0,0 +1,3 @@
<%@ Page Language="C#" EnableViewState="false" AutoEventWireup="false" Inherits="System.Web.UI.Page" %>
<p>This page demonstrates DI when being used in combination with Server.Execute()/Transfer()
<%Server.Execute("Default.aspx");%>