惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Simon Willison's Weblog
Simon Willison's Weblog
Help Net Security
Help Net Security
P
Privacy International News Feed
T
Threat Research - Cisco Blogs
C
Cisco Blogs
C
CERT Recently Published Vulnerability Notes
NISL@THU
NISL@THU
L
LINUX DO - 热门话题
Security Latest
Security Latest
A
Arctic Wolf
G
GRAHAM CLULEY
月光博客
月光博客
S
Securelist
D
Docker
J
Java Code Geeks
T
Troy Hunt's Blog
T
Tenable Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
SecWiki News
SecWiki News
S
Security @ Cisco Blogs
量子位
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
L
LINUX DO - 最新话题
Recent Commits to openclaw:main
Recent Commits to openclaw:main
aimingoo的专栏
aimingoo的专栏
博客园 - 【当耐特】
H
Heimdal Security Blog
The Hacker News
The Hacker News
博客园 - 三生石上(FineUI控件)
Application and Cybersecurity Blog
Application and Cybersecurity Blog
N
Netflix TechBlog - Medium
Vercel News
Vercel News
Forbes - Security
Forbes - Security
B
Blog RSS Feed
H
Hackread – Cybersecurity News, Data Breaches, AI and More
IT之家
IT之家
B
Blog
MongoDB | Blog
MongoDB | Blog
博客园 - 聂微东
Google DeepMind News
Google DeepMind News
S
Secure Thoughts
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
C
Check Point Blog
云风的 BLOG
云风的 BLOG
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
T
The Blog of Author Tim Ferriss
L
Lohrmann on Cybersecurity
F
Full Disclosure
D
Darknet – Hacking Tools, Hacker News & Cyber Security
P
Proofpoint News Feed

博客园 - 尹智玲

给网站增加内页好方法 日力高周波机械 礼品网最终还是决定走淘宝客路线 漂亮的仿qq菜单 单点登陆 国外C#开源系统一览表 test 了解Windows Workflow Foundation Engine (转) c#学习资源 智能客户端网站资料 一篇关于在sharepoint2007上配置Email和将Access2007数据发布到sharepoint2007上的好文章 一篇关于从B2TR升级到RTM的好文章 一个基于sharepoint2007开发的网站 一些有关sharepoint WebServices相关资料 今天微软系列产品发布日,去MSDN上逛了逛,无意中发现了些绝好资源, sharepoint2007视频教材 拼接图片软件 sharepoint相关网址 WSS v3 也可以作为外部网站使用 ---开启anonymous
单点登陆中根据用户名和密码实现自动登陆技巧
尹智玲 · 2006-11-16 · via 博客园 - 尹智玲

单点登陆中根据用户名和密码实现自动登陆技巧

 <script type = "text/javascript">
    var sUsername="yinzhiling";
    var sPassword="123";
    if((sUsername!=null)&&(sUsername!=""))
    {
        var xmlHttp=new ActiveXObject("MSXML2.XMLHTTP");
        xmlHttp.open("GET","http://hzyinzl1/sites/ekp",false,sUsername,sPassword);
        xmlHttp.SetRequestHeader("Accept-Language","zh-cn");
        xmlHttp.send();
        if(xmlHttp.status=="200")
        {
            window.location .href ="http://hzyinzl1/sites/ekp";
         }
     }
  </script>

posted on 2006-11-16 15:00  尹智玲  阅读(268)  评论()    收藏  举报