|
|
|
Response.Write สามารถ click ได้ทำอย่างไรครับ แล้วอยากให้มันคลิ๊กได้แล้ว ขึ้นข้อความบอกว่ |
|
|
|
|
|
|
|
Response.Write("<IMG ID=\"Image\" style=\"Z-INDEX: 101; Right: 56px; POSITION: absolute; TOP: 0px\" src=\"images/logout.png\" onclick=\"javascript:logout();\">");
ส่วน javascript
function logout(){
if(confirm('Logout?')){
window.location.href='logout.asp';
}
}
|
|
|
|
|
Date :
2011-06-20 14:52:34 |
By :
PlaKriM |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อีกนิดนึงคับ คือว่ามันอยู่ ในไฟล์ .cs
เราจะกำหนด
function logout(){
if(confirm('Logout?')){
window.location.href='logout.asp';
}
}
มันมีตัวอย่าง
Code (C#)
if(selectedURL.Length > 0)
{
outputHTMLScript = "<SCRIPT>" +
"function onResize()" +
"{"+
"if(parent.parent.parent.document.getElementById(\"navigationFrame\") != null && document.getElementById(\"BackImage3\") != null)"+
"{"+
"var imageLeft = document.body.clientWidth - 382;"+
"var imageLeftMost = 370 - parent.parent.parent.document.getElementById(\"navigationFrame\").offsetWidth;"+
"imageLeftMost = imageLeftMost - 2;"+
"if(imageLeft < imageLeftMost)"+
"{"+
" imageLeft = imageLeftMost;"+
"}"+
"document.getElementById(\"BackImage3\").style.left = imageLeft;"+
"}"+
"}"+
"</SCRIPT>";
Response.Write(outputHTMLScript);
}
|
|
|
|
|
Date :
2011-06-20 15:33:42 |
By :
Mr.Poo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
นี่เลยครับ
Code (VB.NET)
With Me.btnSubmit
.Attributes.Add("Onclick", "return confirm('Do you want to...?');")
.Style.Add("cursor", "hand")
End With
Go to : ASP.NET Attribute.Add
|
|
|
|
|
Date :
2011-06-20 18:22:40 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบพระคุณอย่างสูงคับเป็นแนวทางที่ดีมากคับ
|
|
|
|
|
Date :
2011-06-20 22:24:30 |
By :
Mr.Poo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|