-5
我有一個名字是Mymethod的函數。它有三個參數。我想在Page_Load()中調用它: 我的問題是我應該寫的用參數調用MyMethod函數。我該如何調用一個具有參數的主類的函數?
public static string MyMethod(string Pro_id, string Sta_id, string Ity_id)
{
try
{
MySqlConnection con = new MySqlConnection(Globals.CONNECTION_STRING);
con.Open();
String UserId = HttpContext.Current.Session["user_id"].ToString();
MySqlCommand cmd = new MySqlCommand("INSERT INTO issue values ('" + UserId + "','" + Pro_id + "','" + Sta_id + "','" + Ity_id + "')", con);
cmd.ExecuteNonQuery();
con.Close();
}
catch (Exception err)
{
return "error";
}
return "success";
}
protected void Page_Load(object sender, EventArgs e)
{
}
問題是什麼? –
我寫了「MyMethod(字符串Pro_id,字符串Sta_id,字符串Ity_id);」在Page_load中,但我有錯誤。 – user3627624
你得到了什麼錯誤。發佈不完整的問題不會讓你的答案 –