我在我的页面DataList和更新面板。 实施后,我检查了响应说话的很长一段时间使用更新后的面板...... 这里是学习材料 。 我有一个DELETE命令事件DataList和作品在上述情况下找到。 我试图实现使用页面方法删除命令。 任何想法如何做到这一点?
基本上,我想找到在此事件中隐藏的控制,并有删除的记录在数据库`。 任何帮助将得到高度赞赏。
我在我的页面DataList和更新面板。 实施后,我检查了响应说话的很长一段时间使用更新后的面板...... 这里是学习材料 。 我有一个DELETE命令事件DataList和作品在上述情况下找到。 我试图实现使用页面方法删除命令。 任何想法如何做到这一点?
基本上,我想找到在此事件中隐藏的控制,并有删除的记录在数据库`。 任何帮助将得到高度赞赏。
完整的应用程序可以从以下网址下载:
http://sdrv.ms/LJJz1K
此示例使用在ASP.Net(相同的概念可以被应用到MVC应用程序)其余服务
使用REST服务与信息页方法时,更清晰的优点是可测性。
我会引导你一步一步地配置服务:
您需要以下引用:
掘金包:
jQuery插件:
服务信息
[ServiceContract]
public interface IMyService
{
[OperationContract]
[WebInvoke(
ResponseFormat = WebMessageFormat.Json,
RequestFormat = WebMessageFormat.Json,
UriTemplate = "/DeleteFromService",
Method = "DELETE")]
void Delete(int id);
}
[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
public class MyService : IMyService
{
public void Delete(int id)
{
// delete your product
// simulate a long process
Thread.Sleep(5000);
}
}
在Global.asax中
void Application_Start(object sender, EventArgs e)
{
// Code that runs on application startup
RouteTable.Routes.Ignore("{resource}.axd/{*pathInfo}");
RouteTable.Routes.Add(new ServiceRoute("",
new WebServiceHostFactory(),
typeof(MyService)));
}
在web.config中
<system.serviceModel>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" />
<standardEndpoints>
<webHttpEndpoint>
<standardEndpoint name="" helpEnabled="true"
automaticFormatSelectionEnabled="true" />
</webHttpEndpoint>
</standardEndpoints>
</system.serviceModel>
注册脚本(它们可以在母版页中注册)
<script type="text/javascript" src="Scripts/jquery-1.7.2.min.js" language="javascript" ></script>
<script language="javascript" type="text/javascript" src="Scripts/jquery.blockui.1.33.js"></script>
在ASP.Net内容页(在此示例中,我使用的是母版页)
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
<input type="button" value="Delete" id="myButton" />
</asp:Content>
<asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent">
<script type="text/javascript" language="javascript">
function deleteFromService() {
if (!confirm("Are you sure you want to delete?")) {
return;
}
$.blockUI();
$.ajax({
cache: false,
type: "DELETE",
async: true,
url: "/DeleteFromService",
data: "3", // get your id to delete
contentType: "application/json",
dataType: "json",
success: function () {
$(document).ajaxStop($.unblockUI);
alert("done");
},
error: function (xhr) {
$(document).ajaxStop($.unblockUI);
alert(xhr.responseText);
}
});
}
jQuery().ready(function () {
$("#myButton").click(deleteFromService);
});
</script>
</asp:Content>
就是这样,AJAX命令的简单方法=)