单点登录(Single Sign On),简称为 SSO,是目前比较流行的企业业务整合的解决方案之一。SSO的定义是在多个应用系统中,用户只需要登录一次就可以访问所有相互信任的应用系统。asp.net跨域单点登录分为:1、跨子域单点登录。如 blog.a.com 和 info.a.com 这2个站点...
分类:
Web程序 时间:
2014-07-06 20:05:43
阅读次数:
250
In this problem you are to generate a triangular wave form according to a specified pair of Amplitude and Frequency.
Input and Output
The input begins with a single positive integer on a line by i...
分类:
其他好文 时间:
2014-07-03 17:15:14
阅读次数:
204
package Gui;/** * check box must be in a same ButtonGroup can`t be selected * at the same time * * */import javax.swing.*;import java.awt.*;public c.....
分类:
其他好文 时间:
2014-07-03 07:18:15
阅读次数:
142
单点登录SSO(Single Sign On)说得简单点就是在一个多系统共存的环境下,用户在一处登录后,就不用在其它系统中登录,也就是用户的一次登录能得到其它全部系统的信任。单点登录在大型站点里使用得很频繁,比如像阿里巴巴这种站点,在站点的背后是成百上千的子系统,用户一次操作或交易可能涉及到几十个子...
分类:
其他好文 时间:
2014-07-02 22:47:53
阅读次数:
265
1. 属性列表: SelectionMode 组件中条目的选择类型,即多选(Multiple)、单选(Single) Rows 列表框中显示总共多少行 Selected 检測条目是否被选中 SelectedItem 返回的类型是ListItem,获得列表框中被选择的条目 Count 列表框中条目的总...
分类:
其他好文 时间:
2014-07-02 14:14:41
阅读次数:
183
AngularJS 教程(点我)
AngularJS 通过新的属性和表达式扩展了 HTML。
AngularJS 可以构建一个单一页面应用程序(SPAs:Single Page Applications)。
AngularJS 学习起来非常简单。
现在开始学习 AngularJS!
每个章节都有相应的实例
在每个章节中,您可以在线编辑实例,然后点击按钮查看结...
分类:
Web程序 时间:
2014-07-02 11:34:55
阅读次数:
198
[LeetCode]Single Number...
分类:
其他好文 时间:
2014-07-02 07:18:14
阅读次数:
221
1、使用私有构造器或者枚举类型强化singleton
1》单例模式---私有构造器,提供一个公有的成员是一个静态工厂方法:
public class SingleTon{
private static final SingleTon single=new SingleTon();
private SingleTon(){ }
pu...
分类:
其他好文 时间:
2014-07-01 14:24:47
阅读次数:
181
题目
Given an array of integers, every element appears twice except for one. Find that single one.
Note:
Your algorithm should have a linear runtime complexity. Could you implement it witho...
分类:
其他好文 时间:
2014-07-01 06:24:42
阅读次数:
204
题目
Given an array of integers, every element appears three times except for one. Find that single one.
Note:
Your algorithm should have a linear runtime complexity. Could you implement it...
分类:
其他好文 时间:
2014-07-01 06:23:24
阅读次数:
334