|
|
|
javascript สามารถร้าง popup สามารถส่ง พารามิเตอร์ ไปได้ด้วย |
|
|
|
|
|
|
|
ช่วยหน่อยนะครับ
|
|
|
|
|
Date :
2011-06-07 09:19:49 |
By :
chon2008 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองพยายามหาแล้ว แล้วก็ได้มาต้องแปลงให้ได้อย่างที่ต้องการก็ประมาณนี้
เผื่อว่าใครเข้ามาเจอเอาไปแปลงๆใช้นะครับ
Code (C#)
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Web1.aspx.cs" Inherits="Catalog.Web1" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<script language="javascript" type="text/javascript">
function Popup(data) {
var mywindow = window.open('', 'my div', 'height=400,width=600');
mywindow.document.write('<html><head><title>my div</title>');
mywindow.document.write('</head><body >');
mywindow.document.write(data);
mywindow.document.write('</body></html>');
mywindow.document.close();
return true;
}
}
</script>
<body>
<form id="form1" runat="server">
<div>
<asp:Button ID="Button1" runat="server" Text="Button" OnClientClick="javascript:Popup('Images/images.jpg');" />
</div>
</form>
</body>
</html>
|
|
|
|
|
Date :
2011-06-07 15:15:36 |
By :
chon2008 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|