|
|
|
ขอโค้ด C#,ASP.NET ที่กด Button แล้วให้หน้าใหม่ที่ link ไปแสดงเป็น New Window อ่ะค่ะ |
|
|
|
|
|
|
|
Response.Write("<script>window.open('http://www.google.co.th');</script>");
ScriptManager.RegisterClientScriptBlock(this, typeof(Page), "Message", "window.open('http://www.google.co.th');", true);
ใช้ได้เหมือนกันครับ
|
|
|
|
|
Date :
2011-02-22 12:21:42 |
By :
iSad |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
หรือ
Code (C#)
protected void Page_Load(object sender, EventArgs e)
{
myButton.Attributes.Add("onclick" ,"window.open('--- URL OR LINK HERE ---');");
.....
.....
}
|
|
|
|
|
Date :
2011-02-22 12:47:11 |
By :
สาวเอ๋อ (ก้อคนมานเอ๋อ) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|