谁知道怎么把一个数从ASPX页里读到一个HTML页的一个文本框内呢

兄弟们帮我问一下,谁知道怎么把一个数从ASPX页里读到一个HTML页的一个文本框内呢?

你说详细一点呀,我是要用一个ASPX页调一个HTML页把数值传过去,关键是在HTML页里怎么接收呀,最好是做个完整一点的示列好吗,在加100分.
最新回答
清淡夏未央

2024-05-06 06:26:36

给你做个例子吧
原理是aspx要传递给HTML页面的数据通过写到URL里如"./test.htm?P1=Value1&P2=Value2
HTML文件中分析URL得到每个传递的参数值.
下面例子中传递了P1,P2两个参数.

ASPX文件

<%@ Page Language="VB" %>
<script runat="server">
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs)
Response.Redirect("./test.htm?P1=" + P1.Text + "&P2=" + P2.Text, True)
End Sub
</script>
<html>
<head runat="server">
<title>测试</title>
</head>
<body>
<form id="form1" runat="server">

<asp:TextBox ID="P1" runat="server"></asp:TextBox>
<asp:TextBox ID="P2" runat="server"></asp:TextBox>
<asp:Button ID="Button1" runat="server" Text="Button" OnClick="Button1_Click" />
</form>
</body>
</html>

HTML文件 test.htm

<html>
<head>
<script language="javascript">
function fn1(){
var i=document.URL.indexOf("?");
if(i!=-1){
var QS=document.URL.substring(i+1).split("&");
var PS;
for(i=0;i<QS.length;i++){
PS=QS[i].split("=");
if(PS[0]=="P1"){
if(PS[1])document.all("input1").value=PS[1];
}
else if(PS[0]=="P2"){
if(PS[1])document.all("input2").value=PS[1];
}
//.......

}
}
}
</script>
</head>
<body onload="fn1()">
<input name="input1" />
<input name="input2" />
</body>
</html>
浪居酒家

2024-05-06 07:20:19

aspx中加入代码:
<textarea id="mytt">43243242</textarea>
<script>
parent.document.getElementById('umemo')=document.getElementById('mytt').value;
//如果调用aspx的html页中有id=umemo的对象
//如<textarea id="umemo"></textarea>
//使用<iframe>调用有效
</script>
衣香花红的爱人

2024-05-06 02:31:01

到底是哪个传到哪个啊,你都没说清楚,标题是aspx读到html里的内容,补充确是“在HTML页里怎么接收”