在 asp.net 中使用 jquery ajax 将值插入数据库
本文关键字:ajax 插入 数据库 jquery asp net | 更新日期: 2023-09-27 18:33:29
在下面的代码中,我尝试使用jquery ajax将值插入数据库。就我而言,我在单击按钮时调用 jquery ajax。但它没有调用网络方法。请帮助我纠正此问题。
单位详情.aspx
<script type="text/JavaScript"
src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<asp:ScriptManager ID="ScriptManager1" runat="server" EnablePageMethods="true">
</asp:ScriptManager>
function MyFunction() {
$.ajax({
type: "POST",
url: "UnitDetails.aspx/InsertData",
data: "{'UnitType':'" + $("#<%=txtUnitTypeName.ClientID%>").val() + "','UnitTypeCode':'" + $("#<%=txtUnitTypeShortCode.ClientID%>").val() + "'}",
contentType: "application/json; charset=utf-8",
dataType: "json",
async: "true",
cache: "false",
success: function (msg) {
alert("Success");
// On success
},
Error: function (x, e) {
alert("Fail");
// On Error
}
});
}
<input name="data[UnitType][Name]" type="text" class="autofocus"maxlength="255" id="txtUnitTypeName" runat="server" />
<input name="data[UnitType][ShortCode]" type="text" maxlength="5" id="txtUnitTypeShortCode" runat="server" />
[WebMethod]
public static void InsertData(string UnitType, string Code)
{
try
{
MastersClient Uinsert = new MastersClient();
Dictionary<string, string> UnitVal = new Dictionary<string, string>();
UnitVal.Add("UnitTypeName", UnitType.ToString());
UnitVal.Add("UnitTypeShortCode", Code.ToString());
}
catch (Exception ex)
{
string strMsg = "Error message : " + Environment.NewLine + "Date : " + DateTime.Now.ToString("dd/MMM/yyyy HH:mm:ss") + Environment.NewLine + "Error : " + ex.Message + Environment.NewLine;
Logger objErrorHandler = new Logger();
objErrorHandler.MsgType = MessageType.MailAndEventLog;
objErrorHandler.RaiseError(strMsg, ex);
}
}
检查您的网址地址,也许它应该看起来像这样:
~/UnitDetails.aspx/InsertData
或
~/UnitDetails/InsertData/
并检查您正在传递的数据,尝试传递静态数据而不通过jQ提取值,可能会有一些错误。像那样:
{'UnitType': 'type', 'UnitTypeCode': 'typeCode'}
这是您的解决方案
data: "{'UnitType':'" + $("#<%=txtUnitTypeName.ClientID%>").val() + "',
'UnitTypeCode':'" + $("#<%=txtUnitTypeShortCode.ClientID%>").val() + "'}",
您发布的数据中的第二个参数是UnitTypeCode
在您的服务中,您的第二个参数是code
这是错误的,它应该是相同的
public static void InsertData(string UnitType, string Code)
应该是
public static void InsertData(string UnitType, string UnitTypeCode)
希望有帮助!