|
|
|
ส่งค่าจากเพจหลักไปยังอีกเพจโดยทำ popup ขึ้นมาแต่ข้อมูลไม่โชว์ที่ popup จากการกรอก textbox1และ textbox2 แล้ว submit ครับ |
|
|
|
|
|
|
|
ต้องการส่งค่าข้อมูลไปยังอีกเพจหนึ่ง โดยใช้ Popup โด้ดที่เขียนตามข้างล่างนี้ครับ
ฟอร์ม default.aspx
<script type="text/javascript">
function OpenPopup() {
window.open("default1.aspx","List","scrollbars=no,resizable=no,width=530,height=300");
return false;
}
</script>
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<asp:TextBox ID="TextBox2" runat="server"></asp:TextBox><br />
<asp:Button ID="Button1" runat="server" Text="Button" />
</div>
</form>
</body>
</html>
ฟอร์ม default.aspx.vb
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
If Not IsPostBack Then
Me.Button1.Attributes.Add("onclick", "javascript:return OpenPopup()")
End If
End Sub
แต่พอ submit ไปที่ default1.aspx แล้ว ผมใช้แค่ request.querystring เฉยๆ ข้อมูลก็ยังไม่มาครับ
ไม่ทราบว่าจะเขียน ฟอร์ม default1.aspx ยังไงดี ให้ข้อมูลโชว์ จากการกรอก textbox1และ textbox2 ครับ
Tag : .NET, JavaScript, Web (ASP.NET), VB.NET
|
|
|
|
|
|
Date :
2011-01-06 21:14:21 |
By :
bluesky007 |
View :
1228 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่เห็นส่ง parameter อะไรไป popup เลย แล้วจะขึ้นได้ไง
|
|
|
|
|
Date :
2011-01-11 10:54:00 |
By :
ตังค์แมน |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|