ajax/json を使用して要素 ID を取得し、ヒットする jquery があります。
[System.Web.Services.WebMethod]
public static string EditPage(string nodeID)
{
DataTable dt = new DataTable();
using (SqlConnection con = new SqlConnection(Global.conString))
using (SqlCommand cmd = new SqlCommand("contentPageGetDetail", con))
{
cmd.Parameters.Add("@ID", SqlDbType.UniqueIdentifier).Value = Global.SafeSqlLiteral(nodeID, 1);
cmd.CommandType = CommandType.StoredProcedure;
cmd.ExecuteNonQuery();
using (SqlDataAdapter da = new SqlDataAdapter(cmd))
{
da.Fill(dt);
}
}
if (dt.Count > 0)
{
string pageTitle = dt.Rows[0]["Title"].toString();
string contentID = dt.Rows[0]["ContentID"].toString();
return pageTitle, contentID, nodeID;
}
else
{
return "Failed";
}
}
戻る時が来たら、ストアド プロシージャから返されたすべてのコンテンツを取得して、成功セクションの jquery メソッドに戻し、テキスト フィールドに隠しフィールド、ドロップダウン値、およびタイトルを設定します。
jQuery で「pageTitle」を使用しようとしましたが、未定義になりました。フォームを表示する前に、返されたものを取得して Web フォームのフィールドに入力するには、jQuery 側で何をする必要がありますか?