• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

javascript调用C#后台程序执行查询

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

目的:在aspx页面的一个文本框失去焦点时,触发一个查询TABLE的动作。

 

1. page_load 添加 txtInternal.Attributes["onfocus"] = "MyJsFunc()"; 

2. 页面javascript添加:

<script ...> 

... 

            function MyJsFunc() 
            {
                var txt = document.getElementById("txtLotID").value;
                PageMethods.MyMethod(txt,OnSuccess);
                
            }
            function OnSuccess(value) 
            {           
                document.getElementById("txtInternal").innerText=value;
                //$get('<%= Label1.ClientID %>').innerText = result=="false" ? "该用户已注册" : "OK";           

            } 

... 

 <script>

 3. html添加:在div标签里头,form外头

<div>

<asp:ScriptManager ID="ScriptManager1" runat="server" EnablePageMethods="true"></asp:ScriptManager> 

<form>

</form>

</div> 

 

4.aspx.cs文件:

[System.Web.Services.WebMethod] //要在客户端使用服务器方法,必须加上这个Attribute
    public static string MyMethod(string str_lotid) //方法必须是static
    {
        LabelView labelview = new LabelView();
        labelview.LotID = str_lotid;
        HttpResponse resp = System.Web.HttpContext.Current.Response;
        
        ProcessGetLabelViewByLotID getLabelbylotid = new ProcessGetLabelViewByLotID();
        getLabelbylotid.LabelView = labelview;
        try
        {
            getLabelbylotid.Invoke();
        }
        catch (Exception ex)
        {
            string str_url;
            str_url = "ErrorPage.aspx?ErrorMessage=" + HttpUtility.UrlEncode(ex.Message);//Server.urlencode(ex.Message);
            resp.Redirect(str_url);
        }
        string str = getLabelbylotid.LabelView.PartName.ToString();
        return str;

    } 

 

备注:一定要有OnSuccess


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
(二)C#数据绑定发布时间:2022-07-10
下一篇:
.NETC#DES【转】发布时间:2022-07-10
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap