zoukankan      html  css  js  c++  java
  • jQuery入门(10):Ajax(利用WebService调用用户控件生成HTML)

    注:这篇文章参考老赵的"用户控件生成HTML"一文!

    using System;

    using System.Collections.Generic;

    using System.Linq;

    using System.Web;

    using System.Web.UI;

    using System.Web.Services;

    using System.IO;

    using WebFunction; 

    namespace AstarMvc

    {

        /// <summary>

        /// WsAjax 的摘要说明

        /// </summary>

        [WebService(Namespace = "http://tempuri.org/")]

        [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]

        [System.ComponentModel.ToolboxItem(false)]

        // 若要允许使用 ASP.NET AJAX 从脚本中调用此 Web 服务,请取消对下行的注释。

        [System.Web.Script.Services.ScriptService]

        public class WsAjax : System.Web.Services.WebService

        {

            [WebMethod(EnableSession = true)]

            public string GetLoginHtml(string s)

            {

                ControlManager<WcUserLogin> viewManager = new ControlManager<WcUserLogin>();

                var control = viewManager.LoadViewControl("~/WcUserLogin.ascx");

               return viewManager.RenderView(control);

            }

            [WebMethod(EnableSession = true)]

            public string GetLoginCheck(string userName, string userPwd, string checkCode)

            {

                ControlManager<WcUserLogin> viewManager = new ControlManager<WcUserLogin>();

                var control = viewManager.LoadViewControl("~/WcUserLogin.ascx");

                control.UserName = userName;

                control.UserPwd = userPwd;

                control.CheckCode = checkCode;

                string msg = control.UserLogin() == "1" ? "LoginSucess" : "LoginError";

                //string jsonData = "{ucresult:""" + viewManager.RenderView(control) + """,msgresult:""" + msg + """}";

                return "<!--" + msg + "-->" + viewManager.RenderView(control);

           }

            [WebMethod(EnableSession = true)]

            public string ExitLogin(string a)

            {

                ControlManager<WcUserLogin> viewManager = new ControlManager<WcUserLogin>();

                var control = viewManager.LoadViewControl("~/WcUserLogin.ascx");

                control.ExitLogin();

                return viewManager.RenderView(control);

            }

            [WebMethod]

            public string GetPagingData(int page)

            {

                ControlManager<PagingData> viewManager = new ControlManager<PagingData>();

                var control = viewManager.LoadViewControl("~/PagingData.ascx");

                control.PageIndex = page;

                return viewManager.RenderView(control);

            }

        }

    }

  • 相关阅读:
    BZOJ 2957: 楼房重建
    那些年犯下的逗比错误
    BZOJ 2165: 大楼
    BZOJ 2115: [Wc2011] Xor
    bzoj 2006 [NOI2010]超级钢琴——ST表+堆
    bzoj 4571 [Scoi2016]美味——主席树
    bzoj 1014 [JSOI2008]火星人prefix——splay+哈希
    bzoj 2962 序列操作——线段树(卷积?)
    CF 809D Hitchhiking in the Baltic States——splay+dp
    bzoj 3489 A simple rmq problem——主席树套线段树
  • 原文地址:https://www.cnblogs.com/astar/p/1336431.html
Copyright © 2011-2022 走看看