请教一框架
请问在vb.net 2003 里做asp.net程序开发时,怎样使用框架啊,比如要做一个左右分的框架,那要怎么写代码? 可不可以用vb.net2003的界面设计啊? --------------------编程问答-------------------- DW什么的搞个框架页放那里就OK了,其他一样用 --------------------编程问答-------------------- 照CSDN这个写不就是左右框架么 --------------------编程问答-------------------- iframe --------------------编程问答--------------------<table width="775" border="0" height="100%" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="4" colspan="3"></td>
</tr>
<tr>
<td width="160" valign="top" style="height: 535px">
<iframe src="left.aspx" name="change" width="100%" height="535" scrolling="no" frameborder="NO" id="change" style="body"></iframe></td>
<td width="5" style="height: 535px"> </td>
<td align="center" valign="top" bgcolor="#DEEFEF" style="height: 535px; width: 610px;">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
</table>
<iframe src="" name="zuo" width="100%" height="100%" scrolling="no" frameborder="NO" id="Iframe2" style="body; height: 100%;"></iframe></td>
</tr>
</table> --------------------编程问答-------------------- 用<frame></frame> 就可以实现 可以去搜索下 这个我也不太熟悉 --------------------编程问答-------------------- up --------------------编程问答-------------------- 在你的项目工程中:
1、添加新项
2、在添加新项中,选中HTML页
3、看新建的那个HTML页(默认是HTMLPage),在左下角“设计视图”和“源视图”中,选择“源视图”
4、把<body></body>去掉
5、在</head>下一行输入:
<frameset rows="20%,80%" framespacing="2" border="2" bordercolor="#9966cc" >
<frame src= "URTop.html" name = "top" scrolling="Auto" marginhight=5 marginwidth=5 noresize >
<frameset cols="20%,80%" frameborder="yes" bordercolor="#9966FF">
<frame name = "main" src="URMain.aspx">
<frame name = "content" src="URContent.aspx">
</frameset>
</frameset>
<noframes>
<body bgcolor = "#99CCFF">
</body>
</noframes>
保存,别管他的提示。把这个页设置成起始页,然后编译、运行。 --------------------编程问答-------------------- 上面是个例子(T字型:上下,下分左右),楼主可以参考一下。
我记得vs.net2003里是可以新建框架项的。楼主试试在添加新项里找找框架。可以直接添加,不行就按上面的方法手写。
补充:.NET技术 , ASP.NET