我給你這個答案舉例 我有web服務命名common.cs 現在
public class Common : System.Web.Services.WebService
{
public Common()
{
//here you can check your session so when ever your
webmethod will be executed this code will call first then your webmethod
}
//this webmethod will be executed after common
[WebMethod]
public static bool WebMethodCall()
{// check if its a logged in user or not before executing the webmethod
return true;
}
[WebMethod]
public static bool WebMethodCall1()
{// check if its a logged in user or not before executing the webmethod
return true;
}
}
這樣的解釋會是這樣 你有共同的類名爲共同和兩個的WebMethod webmethodcall和webmethodcall1 在中添加通用代碼commo n 我希望這會幫助你認識...... :)
可以有使用會話....... –
@dholakiyaankit但看,現在我必須寫裏面的所有代碼'[的WebMethod]'檢查有效的用戶 –
有啥問題我不明白你可以使用webmethod中的session來檢查你想要的常用方法嗎? –