我已經在asp.net中創建了一個連接類來保存列表中的值我寫了下面的代碼,但它產生的錯誤是MessageBox
不存在。我google一下,發現 幾個答案,但這些也不能在這裏工作我的代碼是:在上下文中不存在Asp.net MessageBox
public static class Connection
{
public static ArrayList GetCoffeeByType(string coffeetype)
{
ArrayList list = new ArrayList();
try
{
mydbEntities db = new mydbEntities();
var query = from p in db.tableabc select p;
list = query.ToList();
}
catch (Exception ex)
{
MessageBox.Show(exceptionObj.Message.ToString());
}
return list;
}
}
我想這System.Web.UI.ScriptManager.RegisterStartupScript(this, typeof(Page), "alert", "alert('" + Message + "')", true);
- 但它也顯示錯誤的this
和Message
- 我怎樣才能讓這個MessageBox的?
消息框上的WinForms可用的東西,你應該使用JavaScript的alert()來顯示一個錯誤信息給客戶端,請嘗試使用一個回調 –
你不在Web上不必使用messagebox,而是使用javascript alert來代替 –