📄 html_inputtext.aspx
字号:
<%@Page Language="C#"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<script language="JScript">
<!--
function ShowHTMLContent() {
var strURL = 'http://<% = Request.ServerVariables["SERVER_NAME"] %><% = Request.Path %>?<% = Request.QueryString %>';
var strDisplay = new String;
var objHTTP = new ActiveXObject("microsoft.XMLHTTP")
objHTTP.open('GET', strURL, false);
objHTTP.send();
var strReply = objHTTP.responseText;
var intStart = strReply.indexOf('<!' + '--start-->') + 12;
var intEnd = strReply.indexOf('<!' + '--end-->');
if ((intStart > 0) && (intEnd > intStart))
var strDisplay = strReply.substring(intStart, intEnd);
document.all['outHTML'].innerText = strDisplay + ' ';
}
function SetCheck(strCheckboxName) {
document.all[strCheckboxName].checked = true;
}
//-->
</script>
<!-- #include file="style.inc" -->
</head>
<body bgcolor="#ffffff" onload="ShowHTMLContent()">
<!--------------------------------------------------------------------------->
<span class="heading">HtmlInputText Control</span>
<!--start-->
<input type="text" id="MyControl" value="My HTML Textbox" runat="server" />
<!--end-->
<p /><div id="outError" runat="server" />
<font face="Courier New" size="2"><div style="background-color:gainsboro; padding-left:10px" id="outHTML">Fetching HTML content...</div></font>
<form runat="server" method="get">
<table border="0">
<tr>
<td nowrap="nowrap"><input type="checkbox" id="chkDisabled" runat="server" /> Set: </td><td align="right" nowrap="nowrap">Disabled =</td><td nowrap="nowrap"><select id="selDisabled" size="1" runat="server" onchange="SetCheck('chkDisabled')"><option>True</option><option>False</option></select></td>
<td nowrap="nowrap"> </td>
<td nowrap="nowrap"></td><td align="right" nowrap="nowrap">ID =</td><td nowrap="nowrap"><% = MyControl.ID %></td>
</tr><tr>
<td nowrap="nowrap"><input type="checkbox" id="chkMaxLength" runat="server" /> Set: </td><td align="right" nowrap="nowrap">MaxLength =</td><td nowrap="nowrap"><input type="text" size="2" id="txtMaxLength" runat="server" onkeypress="SetCheck('chkMaxLength')" /></td><td></td>
<td nowrap="nowrap"></td><td align="right" nowrap="nowrap">Name =</td><td nowrap="nowrap"><% = MyControl.Name %></td>
</tr><tr>
<td nowrap="nowrap"><input type="checkbox" id="chkSize" runat="server" /> Set: </td><td align="right" nowrap="nowrap">Size =</td><td nowrap="nowrap"><input type="text" size="2" id="txtSize" runat="server" onkeypress="SetCheck('chkSize')" /></td><td></td>
<td nowrap="nowrap"></td><td align="right" nowrap="nowrap">TagName =</td><td nowrap="nowrap"><% = MyControl.TagName %></td>
</tr><tr>
<td nowrap="nowrap"></td><td align="right" nowrap="nowrap">Type =</td><td nowrap="nowrap"><% = MyControl.Type %></td><td></td>
<td nowrap="nowrap"><input type="checkbox" id="chkValue" runat="server" /> Set: </td><td align="right" nowrap="nowrap">Value =</td><td nowrap="nowrap"><input type="text" size="20" id="txtValue" runat="server" onkeypress="SetCheck('chkValue')" /></td>
</tr><tr>
<td nowrap="nowrap"><input type="checkbox" id="chkVisible" runat="server" /> Set: </td><td align="right" nowrap="nowrap">Visible =</td><td nowrap="nowrap"><select id="selVisible" size="1" runat="server" onchange="SetCheck('chkVisible')"><option>True</option><option>False</option></select></td><td></td>
<td nowrap="nowrap"><input type="button" Value="Reset" onclick="javascript:location.href='http://<% = Request.ServerVariables["SERVER_NAME"] %><% = Request.Path %>'"></td><td nowrap="nowrap"></td><td nowrap="nowrap"><input type="submit" Value="Update" runat="server" /></td>
</tr>
</table>
</form>
<script language="C#" runat="server">
void Page_Load(Object sender, EventArgs e)
{
outError.InnerHtml = "";
try
{
if (IsPostBack)
{
if (chkDisabled.Checked) MyControl.Disabled = Convert.ToBoolean(selDisabled.Value);
if (chkMaxLength.Checked) MyControl.MaxLength = Convert.ToInt32(txtMaxLength.Value);
if (chkSize.Checked) MyControl.Size = Convert.ToInt32(txtSize.Value);
if (chkValue.Checked) MyControl.Value = txtValue.Value;
if (chkVisible.Checked) MyControl.Visible = Convert.ToBoolean(selVisible.Value);
}
selDisabled.Value = MyControl.Disabled.ToString();
txtMaxLength.Value = MyControl.MaxLength.ToString();
txtSize.Value = MyControl.Size.ToString();
txtValue.Value = MyControl.Value;
selVisible.Value = MyControl.Visible.ToString();
}
catch (Exception objError)
{
outError.InnerHtml = "<b>* Error</b>: " + objError.Message + "<p />";
}
}
</script>
<!--------------------------------------------------------------------------->
<!-- #include file="foot.inc" -->
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -