栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > asp

div弹出层的ajax登录(Jquery版+c#)

asp 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

div弹出层的ajax登录(Jquery版+c#)

页面初始化,界面如图所示:

Server name文本框获取焦点时候,界面如图所示(这里可以改成你登录的验证码):

可以加载SQL Server服务列表,也是我的简易SQL查询分析器评论中静夜妙思给予的方法,非常感谢!

加载列表如下图所示:

可以随意地点击添加到Server name中,登录时截图所示:

文本框验证都写好了!还有Authentication验证方式,windows验证下面Login,Password文本框禁掉!由于时间原因,不上图了

demo.html(全部前台代码,js/css还没分文件存储)
复制代码 代码如下:


Database Test Demo





body{margin:0 auto;font-family:Verdana;font-size:12px;}
.top{margin:0 auto; width:100%; text-align:center; margin-top:20px;}
#browser{display:none;}



Database Test Demo


  • SQL Server

    • Databases

      • Test









    #greybackground{background: #000;display: block;z-index: 100;width: 100%;position: absolute;top: 0;left: 0; }
    #login{margin:0 auto;width:420px;height:auto;border:solid 1px #ccc;position:absolute;z-index:200;background-color:#fff;}
    #login .heard{width:420px; height:29px;background-image:url(images/top_bg.gif); border-bottom:solid 1px #ccc;}
    #login .heard .left{float:left;line-height:29px;margin-right:2px;padding-left:10px; color:#5aa608;}
    #login .heard .right{float:right;line-height:29px;margin-right:5px;}
    #login .heard .right a{color:#999;text-decoration:none;}
    #login .heard .right a:hover{color:red;text-decoration:underline;}
    #login .content{width:420px; height:200px;}
    #login .content li{ list-style:none; padding:5px 0px 5px 30px;}
    #login .content .top{ width:100%; margin-top:5px;height:30px;line-height:30px;}
    #login .content .top .left{ float:left;width:120px; text-align:right;}
    #login .content .top .right{ float:right;width:280px;text-align:right;padding-right:20px;}
    #login input,#login,select,#login,button{font-family:inherit;font-size:inherit;font-weight:inherit;*font-size:100%;}
    #login input{width: 80%;padding: 7px 7px 6px;border-color: #B3B3B3 #EAEAEA #EAEAEA #B3B3B3;border-style: solid;border-width: 1px;color:black;}
    #login select{width: 86%;padding: 7px 7px 6px; border-color: #B3B3B3 #EAEAEA #EAEAEA #B3B3B3;border-style: solid;border-width: 1px;color:black;}
    #login button,#login .btn-submit,#login .button,#login .btn-submit:focus,#login .button:focus,.btn-submit,.button{border-left: 1px solid #C6C6C6;
    border-right: 1px solid #DDDDDD;border-top: 1px solid #DDDDDD;border-bottom: 1px solid #C6C6C6;
    cursor:pointer;width:auto;margin:0 10px 0 0;padding-bottom:3px;line-height:1.3em;
    color:#515151;font-weight:bold;background:url(images/button.png) #e5e3e3 repeat-x 0 0;
    height:32px;padding-left:12px;padding-right: 12px;padding-top: 6px;}
    #login button:hover,#login .btn-submit:hover,.button:hover,.btn-submit:hover {background-image:none;}
    #login .btn-submit,#login .btn-submit:focus,.btn-submit {width:auto;border-color:#5C91A4 #2B7089 #1A6480 #2A6F89;background-image:url(images/button_highlight.png);background-color:#4e85bb;color:#fff;}
    #login .bottom-btn{width:90%; margin:0 auto; padding-top:7px; border-top:1px #ccc solid; margin-top:5px;}

    #layer{position:relative;}
    #poper{position:absolute;z-index:10;display:none;left:39px;border:solid 1px #ccc; background-color:#fff;}

    #poper .heard{height:25px;line-height:25px; width:100%;text-align:right; }
    #poper .heard a{color:#999;text-decoration:none;}
    #poper .heard a:hover{color:red;text-decoration:underline;}
    #poper .first{height:30px;line-height:30px; width:100%;text-align:center; color:#5aa608;}
    #poper .first a{color:#5aa608;text-decoration:underline;}
    #poper .second{height:20px;line-height:20px; width:100%;text-align:left; margin-left:10px;}
    #poper .second a{color:#999; text-decoration:none;}
    #poper .second a:hover{color:#5aa608; text-decoration:underline;}


    Connect to Serverclose


    Server name:




    close  
    点击加载SQL Server服务列表




    Authentication:
    Login:
    Password:







    Handler.ashx

    复制代码 代码如下:
    <%@ WebHandler Language="C#" Class="Handler" %>

    using System;
    using System.Web;
    using System.Collections.Generic;
    using System.Text;
    using System.Web.SessionState;

    public class Handler : IHttpHandler,IRequiresSessionState {

    public void ProcessRequest (HttpContext context) {
    context.Response.ContentType = "text/plain";
    string tempValue = string.Empty;
    if (context.Request["flag"] == null)
    context.Response.Write("error");
    else
    {
    string flag = context.Request["flag"];
    switch (flag)
    {
    case "server":
    tempValue = this.GetServers();
    break;
    case "islogin":
    tempValue = (context.Session["login"] != null).ToString();//判断是否登录到SQL
    break;
    case "login":
    tempValue = IsLogin(context);
    break;
    default:
    tempValue = "error";
    break;
    }
    }
    context.Response.Write(tempValue);
    }

    ///
    /// 加载SQL Server 服务列表
    ///

    ///
    private string GetServers()
    {
    IList list = Common.GetServers();
    if (list == null || list.Count == 0) return "empty";
    StringBuilder sb = new StringBuilder();
    foreach (string s in list)
    {
    sb.AppendFormat("{0}", s);
    }
    return sb.ToString();
    }

    ///
    /// 登录SQL Server
    ///

    ///
    ///
    private string IsLogin(HttpContext context)
    {
    if (context.Request["user"] == null || context.Request["password"] == null)
    {
    context.Session["login"] = "success";
    return "";
    }
    else
    {
    string server = HttpUtility.UrlDecode(context.Request["sqlServer"]);
    string user = HttpUtility.UrlDecode(context.Request["user"]);
    string password = HttpUtility.UrlDecode(context.Request["password"]);
    string sqlConstring;
    if (Common.IsLogin(server, user, password, out sqlConstring))
    {
    context.Session["login"] = sqlConstring;
    return "True";
    }
    else
    {
    return "False";
    }
    }
    }

    public bool IsReusable {
    get {
    return false;
    }
    }
    }


    Common.cs

    复制代码 代码如下:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Data.Sql;
    using System.Data.SqlClient;
    using System.Data;

    ///
    /// Summary description for Common
    ///

    public class Common
    {
    public Common()
    {
    //
    // TODO: Add constructor logic here
    //
    }

    ///
    /// 加载SQL服务列表
    ///

    ///
    public static IList GetServers()
    {
    IList list = new List();
    SqlDataSourceEnumerator sse = SqlClientFactory.Instance.CreateDataSourceEnumerator() as SqlDataSourceEnumerator;
    if (sse == null) return null;
    DataTable dt = sse.GetDataSources();
    foreach (DataRow dr in dt.Rows)
    {
    string server = dr["ServerName"] as string;
    string instance = dr["InstanceName"] as string;
    if (string.IsNullOrEmpty(instance) || instance.ToUpper() == "MSSQLSERVER")
    list.Add(server);
    else
    list.Add(server + @"" + instance);
    }
    return list;
    }

    ///
    /// SQL Server Authentication
    ///

    /// SQL服务
    /// 用户名
    /// 密码
    /// 数据库连接字符串
    ///
    public static bool IsLogin(string server,string user,string password,out string sqlConstring)
    {
    sqlConstring = string.Format("Data Source={0};Initial Catalog=master;Persist Security Info=True;User ID={1};Password={2}", server, user, password);
    return SQLHelper.LoginSQL(sqlConstring);
    }
    }


    SQLHelper.cs

    复制代码 代码如下:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Data;
    using System.Data.SqlClient;

    ///
    /// Summary description for SQLHelper
    ///

    public class SQLHelper
    {
    public SQLHelper()
    {
    //
    // TODO: Add constructor logic here
    //
    }


    ///
    /// 判断是否登录SQL Server
    ///

    ///
    ///
    public static bool LoginSQL(string sqlConstring)
    {
    bool isLogin = false;
    using(SqlConnection conn = new SqlConnection(sqlConstring))
    {
    conn.Open();
    if (conn.State.ToString().ToLower() == "open")
    isLogin = true;
    return isLogin;
    }
    }
    }

    源代码下载:Database_jquery_div_jb51.rar

    作者 cnblogs xu_happy_you

    转载请注明:文章转载自 www.mshxw.com
    本文地址:https://www.mshxw.com/it/58318.html
    我们一直用心在做
    关于我们 文章归档 网站地图 联系我们

    版权所有 (c)2021-2022 MSHXW.COM

    ICP备案号:晋ICP备2021003244-6号