我只是想问一下单击按钮发送电子邮件的最佳方法是什么。 我的后端使用C#,前端主要使用asp。 我有几个文本框的简单表。 我用jquery收集它们的值,然后通过ajax将它们发送到c#webmethod,然后发送到数据库。
这是我的前端部分: https://jsfiddle.net/m8dLwf9z/85/
请问您可以看到我的按钮是纯HTML。
<input type="button" class="button" id="myButton" value="Save" />
这是我的WebMethod,其中我使用ajax值并将其通过“插入对象”存储过程发送到数据库:
[WebMethod(EnableSession = true)]
public static int GetCollection(List<myCollection> omyCollection, int ddl, string lvl)
{ //Datatable is filled with foreach loop
DataTable tableMain = new DataTable();
tableMain.Columns.Add("CharID");
tableMain.Columns.Add("CharaValue");
foreach (myCollection mycol in omyCollection)
{
string label = mycol.label;
string opis = mycol.opis;
tableMain.Rows.Add(label, opis);
}
int success = 0;
string conn = ConfigurationManager.ConnectionStrings["Connection"].ConnectionString;
using (SqlConnection connection = new SqlConnection(conn))
try
{
//Check if values allready exist in the database
connection.Open();
SqlCommand cmdCount = new SqlCommand("getDuplicate", connection);
cmdCount.CommandType = CommandType.StoredProcedure;
cmdCount.Parameters.AddWithValue("@ObjectName", lvl);
var count = (string)cmdCount.ExecuteScalar();
if (count == null)
{
//Database insert
SqlCommand cmdProc = new SqlCommand("InsertObject", connection);
cmdProc.CommandType = CommandType.StoredProcedure;
//Parameters are sent to the database
cmdProc.Parameters.AddWithValue("@ObjectName", lvl);
cmdProc.Parameters.AddWithValue("@BCID", ddl);
cmdProc.Parameters.AddWithValue("@CharaValueParamether", tableMain);
cmdProc.ExecuteNonQuery();
//If the values are inserted send value 1 to ajax
success = 1;
}
else
{
}
}
catch
{
}
finally
{
connection.Close();
}
return success;
}
我想我必须要通过Ajax激活一些webmethod C#代码? 有人可以给我些帮助吗?
谢谢!