我從數據庫填充下拉列表框。在數據庫中有一些特殊的特許(軟件,管理等)數據。當我點擊顯示按鈕來查看基於選定的值的記錄時,它給出以下錯誤:下拉列表框中給出錯誤的Asp.net特殊字符
'/'應用程序中的服務器錯誤。 's'附近語法不正確。 字符串「'後面未加上引號。 描述:執行當前Web請求期間發生未處理的異常。請查看堆棧跟蹤以獲取有關該錯誤的更多信息以及源代碼的位置。
Exception Details: System.Data.SqlClient.SqlException: Incorrect syntax near 's'.
Unclosed quotation mark after the character string ' '.
Source Error:
Line 208: SqlDataAdapter da = new SqlDataAdapter(cmd);
Line 209: DataSet ds = new DataSet();
Line 210: da.Fill(ds);
Line 211: gvUsrEdit.DataSource = ds;
Line 212: gvUsrEdit.DataBind();
請任何幫助。
發佈我們的代碼從數據庫檢索數據,並結合下拉 – Webruster
謝謝,我會把這兩個 –
我有兩張貼。 –