1
<table style="BORDER-TOP: #42adf1 1px outset" cellSpacing="1" cellPadding="1" width="100%" align="center" border="0">
3
<tr>
4
<td class="column" width="5%" height="20"></td>
5
<td class="column" nowrap width="30%">cell</td>
6
<td class="column" nowrap width="30%">cell</td>
7
<td class="column" nowrap width="20%">cell<td>
8
<td class="column" nowrap width="20%">cell</td>
9
</tr>
10
function AreaDetailsOnOff (menuName) {
menu = document.getElementById(menuName);
3
4
5
6
7
8
9
10
menu = document.getElementById(menuName);
if (menu.style.display == 'none') {
menu.style.display = 'block';
} else {
menu.style.display = 'none';
}
menu.style.display = 'block';
} else {
menu.style.display = 'none';
}
}
</script>
</script>
C#代码,没给全,BaseControl,页面基类
想要的朋友联系我.因为时间紧代码写得有点杂.
1
using System;
2
using System.Web;
3
using System.Web.UI;
4
using System.Web.UI.WebControls;
5
using System.Web.UI.Design;
6
using System.Web.UI.HtmlControls;
7
using System.Collections;
8
using Jessup.Framework;
9
using Jessup.UI.WebControls;
10
using Jessup.Enumeration;
11
using System.Web.Security;
12
13
namespace Jessup.UI.Controls
14
2
3
4
5
6
7
8
9
10
11
12
13
14
MyRepeater 重载Repeater控件
1
using System;
2
using System.Web;
3
using System.Web.UI;
4
using System.Web.UI.WebControls;
5
using System.Web.UI.Design;
6
using System.Web.UI.HtmlControls;
7
using System.Collections;
8
using Jessup.Framework;
9
using Jessup.UI.WebControls;
10
using Jessup.Enumeration;
11
using System.Web.Security;
12
13
namespace Jessup.UI.Controls
14
2
3
4
5
6
7
8
9
10
11
12
13
14