asp.net 首页 - .NET技术 / ASP.NET
哪位能给个asp.net webform首页的例子, 要求: 1、使用frame框架页 2、frame左侧为treeview导航
Asp.net中Frameset的使用 http://blog.csdn.net/liangjingbo/archive/2006/10/19/1341423.aspx 同意楼上的看法引用 这个起码得用三个页面 下面的是框架页面html HTML code <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> </head> <frameset rows="*,20" cols="*" frameborder="no" border="0" framespa…… 无非是四个页面 left top bottom content主页面 left里面弄一个treeview 其他的不解释 然后弄一个default页面 用三个iframe串起来 C# code: <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> <script language="javascript" type="text/javascript"> function getHeight() { document.getElementById("divRight").style.width = document.getElementById("divRoot").offsetWidth - document.getElementById("divLeft").offsetWidth - 10; } </script> <script type="text/javascript" language="
相关问答:
有一个类 class adc { dim a,b,c } 如何在另外一个类中取得类成员及成员个数 class getmenber { dim menbers() function getmenbers(resclass) 'res为一未知类 'getmenber ......
C# code: SqlConnection conn = CsDB.sqlcon(); SqlDataAdapter da = new SqlDataAdapter("select fwCoding from bjmuma_fwCoding where OrderNumber='" + Order + & ......
1.asp.net做的一个答题页面,如何实时限时后自动提交,请大家给点思路 限时的时间信息存放在数据库中 2.如果答题时间设置的较长,如何方式session超时后页面无效 谢谢 用js方法来控制 回复内容太短了。。 js ......
我有两个dropdownlist都绑好了值,想选中一个dropdownlist中的值,然后在另一个dropdownlist中选中相应的一项。 不是从新绑定第二个dropdownlist,是在已经绑好的值当中选中一个。 我想用js写 求助 你可以把drop ......