|
|
|
"history.back();" - JavaScript ต้องการใช้คำสั่ง "history.back();" ในการย้อนกลับโดยคลิกจาก Link ตัวหนังสือคับ |
|
|
|
|
|
|
|
ขอบคุณครับ
|
|
|
|
|
Date :
2009-02-25 16:56:24 |
By :
ken |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณข้อความดีๆๆๆค่ะ เอาไปใช้งานโปรเจคได้ ดีมากค่ะ
|
|
|
|
|
Date :
2009-11-09 06:23:35 |
By :
noi |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช้คำสั่งนี้กับงานอยู่ค่ะ
แต่อยากทราบว่ามันสามารถระบุชื่อเพจที่จะให้ back กลับไปได้มั้ยคะ
คือเราสร้างไฟล์ไว้ 3 ไฟล์ มีหน้า show, form_insert, cmd_sql(insert)
เราใส่โค้ด history.back() ไว้ที่หน้า cmd_sql(insert) ค่ะ แต่ทำไมเหมือนกับว่ามันย้อนกลับไปหน้า show ล่ะคะ?
ถ้าจะใช้คำสั่ง history.go("$url") ได้เหมือนกันรึเปล่า?
|
ประวัติการแก้ไข 2010-12-13 11:44:41
|
|
|
|
Date :
2010-12-13 11:40:28 |
By :
susaya |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณคับ
|
|
|
|
|
Date :
2011-02-03 17:38:37 |
By :
harry37 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
444444444444444444
|
|
|
|
|
Date :
2014-04-05 22:44:49 |
By :
444444444444444444 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
444444444444444444444
ตอนผมหัดเขียนโปรแกรมใหม่ฯครับ แบบง่ายฯ (พื้นฐาน) เผื่อจะมีประโยชน์บ้าง
Code (C#)
public static Boolean SetData(ref List<WL_lstSQLCommand> lstCommandText) {
Boolean suc = false;
int i = 0;
if (lstCommandText != null || lstCommandText.Count() == 0) {
return suc;
}
try {
using (SqlConnection Conn = new SqlConnection(pubConnStr)) {
Conn.Open();
try {
using (SqlTransaction tr = Conn.BeginTransaction()) {
try {
using (SqlCommand cmd = Conn.CreateCommand()) {
cmd.CommandType = CommandType.Text;
cmd.Transaction = tr;
foreach (WL_lstSQLCommand p0 in lstCommandText) {
cmd.Parameters.Clear();
if (p0.CmdParameter != null && p0.CmdParameter.Count() > 0) {
foreach (SqlParameter p1 in p0.CmdParameter) {
cmd.Parameters.AddWithValue(p1.ParameterName, p1.Value);
}
}
cmd.CommandText = p0.CmdText;
p0.AffectedRows = cmd.ExecuteNonQuery();
lstCommandText[i].ErrorMessage = p0.AffectedRows > 0 ? "Success" : "Fail";
i++; //i += 1
}
tr.Commit();
suc = true;
}
}
catch (SqlException ex3) {
tr.Rollback();
lstCommandText[i].ErrorMessage = ex3.Message;
//throw;
}
}
}
catch (SqlException ex2) {
//throw;
}
}
}
catch (Exception ex1) {
//write log. ex1.Message
//throw;
}
return suc;
}
|
|
|
|
|
Date :
2014-04-06 06:54:31 |
By :
love9713 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|