我使用Microsoft Visual Studio 2012作为平台,我创建了Web Forms Project 我创建了数据库文件" SimpleDB.mdf"在他的"表"文件夹我添加了一个名为" Table"它有两列--id和Name(字符串)。我在尝试从javascript函数调用服务器端函数时,将字符串数据插入到此表的Name列中。
这是aspx.cs代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data.SqlClient;
using System.Web.Services;
namespace ProjectWWW
{
public partial class WebForm1 : System.Web.UI.Page
{
[WebMethod]
public static string InsertData(string ID){
string source = "Data Source=(LocalDB)\v11.0;Integrated Security=True;Connect Timeout=30";
SqlConnection con = new SqlConnection(source);
{
SqlCommand cmd = new SqlCommand("Insert into Table(Name) values('" + ID + "')", con);
{
con.Open();
cmd.ExecuteNonQuery();
return "True";
}
}
}
}
这是aspx代码
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="ProjectWWW.WebForm1" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script>
function CallMethod() {
PageMethods.InsertData("hello", CallSuccess, CallError);
}
function CallSuccess(res) {
alert(res);
}
function CallError() {
alert('Error');
}
</script>
</head>
<body>
<header>
</header>
<div class="table" id="div1" > </div>
<form id="Form1" runat="server">
<asp:Button id="b1" Text="Submit" runat="server" onclientclick="CallMethod();return false;"/>
<asp:ScriptManager enablepagemethods="true" id="ScriptManager1" runat="server"></asp:ScriptManager>
</form>
</body>
</html>
所以基本上我期待点击按钮提交时表格列#34;名称&#34;将充满&#34;你好&#34;但没有任何反应,列保持为空(NULL)
答案 0 :(得分:0)
Table
是T-SQL中的保留字,因此我建议您使用[]
方括号括起Table
。
试试这个:
SqlCommand cmd = new SqlCommand("Insert into [Table](Name)
values('" + ID + "')", con);
建议:您的查询对sql注入攻击开放。我建议您使用参数化查询来避免它们。
试试这个:
using(SqlConnection con = new SqlConnection(source))
{
using(SqlCommand cmd = new SqlCommand("Insert into [Table](Name)
values(@Name)", con))
{
con.Open();
cmd.Parameters.AddWithValue("@Name",ID);
cmd.ExecuteNonQuery();
return "True";
}
}