Update of /cvsroot/springnet/Spring.Net/examples/Spring/Spring.WebQuickStart/src/Spring.WebQuickStart.2005/DI/HelloWorld
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv26091
Modified Files:
Web.config
Log Message:
fixed Control DI-by-typename sample
Index: Web.config
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/examples/Spring/Spring.WebQuickStart/src/Spring.WebQuickStart.2005/DI/HelloWorld/Web.config,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Web.config 23 Aug 2007 10:37:37 -0000 1.3
--- Web.config 4 Mar 2008 22:04:40 -0000 1.4
***************
*** 21,25 ****
<!-- use the typename as name to configure DI for any non-UserControl (Note: this will configure *all* TextBoxes!) -->
! <object name="System.Web.UI.WebControls.TextBox">
<property name="Text" value="initial text" />
</object>
--- 21,25 ----
<!-- use the typename as name to configure DI for any non-UserControl (Note: this will configure *all* TextBoxes!) -->
! <object name="System.Web.UI.WebControls.TextBox" abstract="true">
<property name="Text" value="initial text" />
</object>
|