asp.net 控件布局
做一个webform , 源代码及运行效果如下, 如果把这四个控件放到一行,要怎么调整呢?
还有:
<asp: + 控件
<dx: + 控件
这2中格式有什么区别,
谢谢!
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<dx:ASPxLabel ID="ASPxLabel1" runat="server" Text="ASPxLabel">
</dx:ASPxLabel>
<dx:ASPxTextBox ID="ASPxTextBox1" runat="server" Width="170px">
</dx:ASPxTextBox>
</div>
</form>
</body>
</html>
运行后的效果:
------解决方案--------------------asp前缀的是微软自己的服务器控件,dx前缀的是devexpress的控件