|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
Windows本身的所有问题都会一成不变的也累加到了它的身上。安全性、稳定性、跨平台性都会因为与NT的捆绑而显现出来;
<bodyMS_POSITIONING="GridLayout">
<formid="Form1"method="post"runat="server">
<asp:Buttonid="Button1"style="Z-INDEX:101;LEFT:16px;POSITION:absolute;TOP:192px"runat="server"
Text="服务器1"></asp:Button>
<asp:TextBoxid="TextBox1"style="Z-INDEX:102;LEFT:16px;POSITION:absolute;TOP:24px"runat="server"
Height="144px"Width="280px"TextMode="MultiLine"></asp:TextBox>
<asp:Labelid="Label1"style="Z-INDEX:103;LEFT:32px;POSITION:absolute;TOP:248px"runat="server"
Height="96px"Width="248px">Label</asp:Label>
<INPUTstyle="Z-INDEX:104;LEFT:192px;POSITION:absolute;TOP:192px"type="button"
value="客户"id="bt11"onclick="aa();">
<asp:Buttonid="Button2"style="Z-INDEX:105;LEFT:104px;POSITION:absolute;TOP:192px"runat="server"
Text="服务器2"></asp:Button>
<asp:Labelid="Label2"style="Z-INDEX:106;LEFT:312px;POSITION:absolute;TOP:248px"runat="server"
Width="208px"Height="88px">Label</asp:Label>
<asp:HyperLinkid="HyperLink1"style="Z-INDEX:107;LEFT:400px;POSITION:absolute;TOP:32px"
runat="server"NavigateUrl="select_test.aspx">select_text</asp:HyperLink>
</form>
<scriptlanguage="javascript">
functionaa()
{
//用这个办法猎取服务器端控件的数值。用DOM对页面上的元素操纵
alert(document.getElementById(TextBox1).value+"---服务器控件数值");
//在让客户端代码触发还送事务。
alert("客户端触发事务");
document.getElementById(Button1).click();
}
</script>
</body>
privatevoidButton1_Click(objectsender,System.EventArgse)
{
this.Label1.Text=this.TextBox1.Text;
this.Button2_Click(sender,e);//激发按扭2事务
}
privatevoidButton2_Click(objectsender,System.EventArgse)
{
this.Label2.Text=this.TextBox1.Text;
}
-------------------------------------------------------------------------------------------------------------------------------
<scriptlanguage=javascript>
functionaa()
{
//alert(document.getElementById(ListBox1).value);//取得select第一个被选中的元素
//alert(document.getElementById(ListBox1).length)//取得多选框的总元素数量
//取得select里一切被选中的元素
for(vari=0;i<document.getElementById(ListBox1).length;i++)//取得总长度
{
if(document.getElementById(ListBox1).options(i).selected)//检测某一元素是不是被选中
alert(document.getElementById(ListBox1).options(i).value);//取得某元素的数值
}
}
</script>
--------------------------------------------------------------------------------------------------------------------------------
<bodyMS_POSITIONING="GridLayout">
<formid="Form1"method="post"runat="server">
<asp:buttonid="Button1"style="Z-INDEX:101;LEFT:48px;POSITION:absolute;TOP:128px"runat="server"
Text="服务器"Width="0px"></asp:button><INPUTstyle="Z-INDEX:102;LEFT:12</p>使用filesystemobject,可以对服务器上的文件进行操作,浏览、复制、移动、删除等。有ado的支持,asp对数据库的操作非常得心应手。你甚至可以像使用本地数据库那样,管理远程主机上的数据库,对表格、记录进行各种操作。 |
|