ASP.NET使用SqlDependency类及利用SQL2005的Service Broker来检测数据改动的实现
1.创建一个测试数据库Test 如果结果为0表示此数据库没有启用Broker功能,执行下面的代码来启用 SqlDependency.Start(connectionString); //推荐将这段代码加到Global.asax的Application_Start方法中,SqlDependency.Stop(connectionString); //用于关闭,可加在Global.asax的Application_End方法中。 2.页面代码 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"> <title></title></head><body> <form id="form1" runat="server"> <div> <asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Button" /> <asp:GridView ID="GridView1" runat="server"> </asp:GridView> </div> </form> </body> </html> 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.Data; using System.Web.Caching; using System.Configuration; namespace WebApplicationSqlDependency { public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { GetData(); } } public void GetData() { SqlConnection conn = new SqlConnection(ConfigurationMan |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |