|
From: <sv...@de...> - 2005-05-24 21:10:35
|
Author: pcamacho
Date: 2005-05-24 17:10:33 -0400 (Tue, 24 May 2005)
New Revision: 1141
Modified:
humano2/trunk/web/portal/site/leftbar.aspx.cs
Log:
FIX: the link in the leftbar of portal to create instances was bad: readX=
slt.aspx had to be replaced by=20
createXslt.apsx
Modified: humano2/trunk/web/portal/site/leftbar.aspx.cs
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/portal/site/leftbar.aspx.cs 2005-05-24 20:32:13 UTC=
(rev 1140)
+++ humano2/trunk/web/portal/site/leftbar.aspx.cs 2005-05-24 21:10:33 UTC=
(rev 1141)
@@ -86,7 +86,7 @@
foreach(DataRow Dr in dtResult.Rows) //Recorre Folders
{
=20
- string urlCreate =3D Html.genAbsoluteUrl("/portal/site/Data_structu=
red.aspx?action=3Dcreate&display=3DreadXslt.aspx&id_entity=3D" + =
Dr[0]);
+ string urlCreate =3D Html.genAbsoluteUrl("/portal/site/Data_structu=
red.aspx?action=3Dcreate&display=3DcreateXslt.aspx&id_entity=3D" =
+ Dr[0]);
=20
xmlString +=3D "<class>";
xmlString +=3D "<classId>" + Dr[0] +"</classId>";
@@ -218,7 +218,7 @@
{
=20
//string urlCreate =3D Html.genAbsoluteUrl("/portal/site/instance.a=
spx?action=3Dcreate&display=3DreadXslt.aspx&id_entity=3D" + viewC=
lassId[j]);
- string urlCreate =3D Html.genAbsoluteUrl("/portal/site/Data_structu=
red.aspx?action=3Dcreate&display=3DreadXslt.aspx&id_entity=3D" + =
viewClassId[j]);
+ string urlCreate =3D Html.genAbsoluteUrl("/portal/site/Data_structu=
red.aspx?action=3Dcreate&display=3DcreateXslt.aspx&id_entity=3D" =
+ viewClassId[j]);
=20
string className =3D dbAdapter.GetClassNameById(viewCla=
ssId[j]);
=20
|