Response.Redirect用法詳解
阿新 • • 發佈:2019-02-08
The Redirect method causes the browser to redirect the client to adifferent URL.
EG:
string CurrentTime = DateTime.Now.ToShortDateString().ToString();
//其中UserId是從函式外傳遞進去的引數,注意超連結需要新增引號,引號內的東西原樣輸出
string MyUrl = "http://www.microsoft.com?UID=" + UserId + "&TYPE &APP&BIZ=" + CurrentTime + "&func=SYS0102";
Response.Redirect(MyUrl);
小注:區別往sql語句中傳遞變數是這種形式'"+CurrentTime+"',而拼接字串時變數" + CurrentTime + "其中CurrentTime前後的++表示連線,而+前或後的"是對其前後需要連線的字串用的。
對資料庫裡面的SQL語句賦值的時候也要用在雙引號裡面SQL="select a,b,c from ..."
但是SQL語句中會有單引號把欄位名引出來
例如:select * from table where user='abc';
這裡的SQL語句可以直接寫成SQL="select * from table where user='abc’"
ANSI/ISO標準規定字元資料的SQL常量要包含在單引號(')內。