Hola a todos, tengo un problema en ASP.NET. Quiero poner un label y un botón a la misma altura, pero el diseñador no me deja.
Aquí el código:
Lo que quiero por si no me entienden, quiero poner el botón "Registro" al lado de: Label
Aquí el código:
Código (asp) [Seleccionar]
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<style type="text/css">
body {background-color: black}
</style>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
</head>
<body>
<asp:Label ID="Label1" runat="server" CssClass="Titulo" Text="Label" Height="50px" Width="1900px"></asp:Label>
<form id="form1" runat="server">
<asp:Button ID="Button1" runat="server" Height="47px" Text="Registrarse" BorderStyle="None" Width="213px"/>
</form>
</body>
</html>
Lo que quiero por si no me entienden, quiero poner el botón "Registro" al lado de: Label