T
Tony Johansson
Hello!
Here is a simple aspx markup page and we have here two controls
The first one is a select html server control (class HtmlSelect) and the
second is a submit html server control(class HtmlInputSubmit).
The strange thing here is that the second control which is the sumbit
control is not shown in design mode but
is shown is runtime.
Can someboy explain that ?
If I for example change place on these then both is shown in design mode.
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs"
Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<select id="currency" runat="server" />
<input type="submit" value="OK" id="convert" runat="server" />
</div>
</form>
</body>
</html>
//Tony
Here is a simple aspx markup page and we have here two controls
The first one is a select html server control (class HtmlSelect) and the
second is a submit html server control(class HtmlInputSubmit).
The strange thing here is that the second control which is the sumbit
control is not shown in design mode but
is shown is runtime.
Can someboy explain that ?
If I for example change place on these then both is shown in design mode.
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs"
Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<select id="currency" runat="server" />
<input type="submit" value="OK" id="convert" runat="server" />
</div>
</form>
</body>
</html>
//Tony