|
|
|
Server.Transfer("Report.aspx") ทำการส่งค่าเพจหนึ่งไปยังอีกเพจ แต่ถ้าจะให้ เพจนี้ Popup ทำได้ไหมครับ |
|
|
|
|
|
|
|
อีกวิธีหนึ่งก็คือ เก็บค่าไว้ใน sesion แล้วให้ page นั้น เรียกอีกหน้าหนึ่งขึ้นมา
แล้วเมื่อหน้านั้นถูกดึงขึ้นมาให้ มานดึงค่าจาก sessis
ประมาณนี้ครับ มั่วๆ ไปเรื่อย ห้าๆๆ
ขออภัยถ้าคำตอบไม่ถูธกต้องหรือผิดพลาดนะครับ
|
|
|
|
|
Date :
2011-01-04 09:42:35 |
By :
zero1150kfc |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช้ javascript window.open
แล้วค่าที่ต้องการส่งก็ส่งแบบ get ผ่าน url ให้ Report.aspx
|
|
|
|
|
Date :
2011-01-04 10:37:55 |
By :
ตังค์แมน |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (ASP)
<html>
<head>
<title>Open a dialog window</title>
<script type="text/javascript">
function openDialog(form) {
var result = window.showModalDialog("http://www.java2s.com", form, "dialogWidth:300px; dialogHeight:201px; center:yes");
}
</script>
</head>
<body>
<h1>Internet Explorer Modal Dialog Window</h1>
<hr />
<form name="sample" action="#" onsubmit="return false">
Enter your name for the dialog box:
<input name="yourName" type="text" />
<input type="button" value="Send to Dialog" onclick="openDialog(this.form)" />
</form>
</body>
</html>
จะได้ผลอย่างเดียวกับการใช้ dialog ของ winform ค่ะ
|
|
|
|
|
Date :
2011-01-04 16:52:45 |
By :
blurEyes |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|