3

asmx既に既存のファイルがある ASPX Web プロジェクトで作業を開始しました。約 4 つの WebMethods が含まれており、これらの 4 つの Webmethods はhttp://localhost:2133/WebServices.asmx

ここに画像の説明を入力

ここで、既存のものと非常によく似た名前の新しい WebMethodを追加しようとしましたが、リストに表示されません。再コンパイルしてみました。よく調べてみると(サービス参照)WebServiceがどこで参照されているのかわかりませんでした。GetCitieshttp://localhost:2133/WebServices.asmxWebServices.asmx

既存の方法

[WebMethod(EnableSession = true)]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public string GetAvailable(int clientCode)
    {
        try
        {
            //Db Querying statements
        }
        catch (Exception exc)
        {

        }
    }

私が追加した新しいメソッド

[WebMethod(EnableSession = true)]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public string GetCities()
    {
        try
        {
           //Db Querying statements 
        }
        catch (Exception exc)
        {

        }
    }

完全に混乱しています、あなたの考えを共有してください。

4

2 に答える 2