|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
归根到底,Java跨平台可以,但是要重新编写代码,否则还分什么J2EE/J2SE/J2ME呢!第一种:
<%@PageLanguage="C#"AutoEventWireup="true"CodeBehind="WebForm1.aspx.cs"Inherits="web.WebForm1"%>
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<htmlxmlns="http://www.w3.org/1999/xhtml">
<headrunat="server">
<title></title>
</head>
<body>
<formid="form1"runat="server">
<scripttype="text/javascript"language="javascript">
functionaaa(){
form1.Button2.click();
}
</script>
<asp:ButtonID="Button2"runat="server"Text="Button"Style="display:none;"/>
<inputid="Button1"type="button"value="测试"/>
</form>
</body>
</html>
第二种:
<%@PageLanguage="C#"AutoEventWireup="true"CodeBehind="WebForm1.aspx.cs"Inherits="web.WebForm1"%>
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<htmlxmlns="http://www.w3.org/1999/xhtml">
<headrunat="server">
<title></title>
</head>
<body>
<formid="form1"runat="server">
<asp:ButtonID="Button2"runat="server"Text="Button"style="display:none;"/>
<inputid="Button1"type="button"value="测试"/>
</form>
</body>
</html>
第三种:
<scripttype="text/javascript"language="javascript">
functionsendgoods(e){
varreturnvalue=window.showModalDialog("ProduceSendGoods.aspx",window,dialogHeight:580px;dialogWidth:800px;center:yes;status:yes;resizable:yes;help:no;scroll:yes;edge:sunken;);
if(returnvalue!=""){
__doPostBack("ctl00$ContentPlaceHolder_Content$hidbtn","");
}
}
</script>
第四种:
functionClearDate(ControlName){
document.getElementById(ControlName).click();
}
你所列的那些其实差不多都可以称为应用服务器(servlet应该说是一种语言更合适)java是开放的,相同的工具就会有很多公司在做,加上java已经发展了很多年了,因此这些工具就很多了。他们很多都是类似的。 |
|