items : [combo1, combo2, combo3]
写成如上,再就是你的ComboBox 宽度设置一下,要不超过 FieldSet 的宽度会自动换行。
有问题追问。
检查一下你的HTML标记<fieldset>fieldset标记在网页中可以实现WinForm中的GroupBox般的边框效果
把相关代码贴出来看一下子
我把你贴出来的代码试着运行了一下子,没有问题呀:
<html xmlns="" >
<head runat="server">
<title>无标题页</title>
<script language="javascript" type="text/jscript">
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<fieldset style="width:240px">
<legend>创建皮肤文件</legend>
设置了默认皮肤的TextBox
<asp:TextBox runat="server" ID="TextBox1"></asp:TextBox><br /><br />
设置了命名皮肤的TextBox
<asp:TextBox runat="server" ID="TextBox2" SkinID="blue"></asp:TextBox><br /><br />
<asp:TextBox runat="server" ID="TextBox3" TextMode="MultiLine" Rows="4"></asp:TextBox><br /><br />
</fieldset>
</div>
</form>
</body>
</html>
有的时候书上也是有错误的,我看过好几本书,有些位置就是不对的,想想就算写书的不错,排版打字的也有可能错,呵呵,有的时候不一定非要按照书上的来做
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)