From: Argiris K. <be...@us...> - 2005-11-20 15:21:45
|
Update of /cvsroot/magicajax/magicajax/Core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19391/Core Modified Files: MagicAjax NET 2.0.csproj MagicAjax.csproj Log Message: HtmlImage and HtmlAnchor are not working properly for Session/Cache. Added some inheriting controls that do. Index: MagicAjax NET 2.0.csproj =================================================================== RCS file: /cvsroot/magicajax/magicajax/Core/MagicAjax NET 2.0.csproj,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** MagicAjax NET 2.0.csproj 17 Nov 2005 15:03:16 -0000 1.6 --- MagicAjax NET 2.0.csproj 20 Nov 2005 15:21:31 -0000 1.7 *************** *** 142,145 **** --- 142,151 ---- <SubType>Code</SubType> </Compile> + <Compile Include="UI\Controls\AjaxHtmlAnchor.cs"> + <SubType>Code</SubType> + </Compile> + <Compile Include="UI\Controls\AjaxHtmlImage.cs"> + <SubType>Code</SubType> + </Compile> <Compile Include="UI\Design\AjaxPanelDesigner.cs"> <SubType>Code</SubType> Index: MagicAjax.csproj =================================================================== RCS file: /cvsroot/magicajax/magicajax/Core/MagicAjax.csproj,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** MagicAjax.csproj 17 Nov 2005 15:03:16 -0000 1.3 --- MagicAjax.csproj 20 Nov 2005 15:21:32 -0000 1.4 *************** *** 188,191 **** --- 188,201 ---- /> <File + RelPath = "UI\Controls\AjaxHtmlAnchor.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File + RelPath = "UI\Controls\AjaxHtmlImage.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "UI\Controls\AjaxPanel.cs" SubType = "Code" |