Fork me on GitHub
摘要: //注销登录信息 function logOut() { document.execCommand("ClearAuthenticationCache"); window.location.href = "Default.aspx"; } 阅读全文
posted @ 2012-11-23 17:06 Nick.Chung 阅读(333) 评论(0) 推荐(0) 编辑
摘要: Reference:C5.dll,Common.Logging.dll,Quartz.dllGlobal.asax.csusing System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Security;using System.Web.SessionState;namespace SGSGHome.Web{ public class Global : System.Web.HttpApplication { protected void ... 阅读全文
posted @ 2012-11-23 17:02 Nick.Chung 阅读(351) 评论(0) 推荐(0) 编辑
摘要: Reference webservicehttp://ip:port/ReportServer/ReportExecution2005.asmxproxy class//=================================================================... 阅读全文
posted @ 2012-11-23 16:49 Nick.Chung 阅读(321) 评论(0) 推荐(0) 编辑
摘要: SQLHelper.cs//===============================================================================// Microsoft Data Access Application Block for .NET// http://msdn.microsoft.com/library/en-us/dnbda/html/daab-rm.asp//// SQLHelper.cs//// This file contains the implementations of the SqlHelper and SqlHelper 阅读全文
posted @ 2012-11-23 16:39 Nick.Chung 阅读(380) 评论(0) 推荐(0) 编辑
摘要: FileDetail.xaml<controls:ChildWindow x:Class="SGSGHome.Views.File.FileDetail" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:controls="clr-namespace:System.Windows.Controls;assembly= 阅读全文
posted @ 2012-11-23 16:09 Nick.Chung 阅读(533) 评论(0) 推荐(0) 编辑
摘要: TicksToTimeSpanConverter.csusing System;using System.Net;using System.Windows;using System.Windows.Controls;using System.Windows.Documents;using System.Windows.Ink;using System.Windows.Input;using System.Windows.Media;using System.Windows.Media.Animation;using System.Windows.Shapes;using System.Wind 阅读全文
posted @ 2012-11-23 15:56 Nick.Chung 阅读(754) 评论(0) 推荐(0) 编辑
摘要: DoubleClickHelper.csusing System;using System.Net;using System.Windows;using System.Windows.Controls;using System.Windows.Documents;using System.Windows.Ink;using System.Windows.Input;using System.Windows.Media;using System.Windows.Media.Animation;using System.Windows.Shapes;using System.Windows.Thr 阅读全文
posted @ 2012-11-23 15:51 Nick.Chung 阅读(249) 评论(0) 推荐(0) 编辑
摘要: <telerik:RadTreeListView Margin="3" Name="tv" Grid.Row="2" telerik:StyleManager.Theme="Office_Silver" AutoGenerateColumns="False" IsFilteringAllowed="False" HierarchyColumnIndex="1" RowIndicatorVisib... 阅读全文
posted @ 2012-11-23 15:37 Nick.Chung 阅读(1833) 评论(0) 推荐(0) 编辑
摘要: var emptyObject1 = {}; //创建空对象var emptyObject2 = new Object(); //创建空对象var person = {"name":"sdcyst", "age":18, "sex":"male"}; //创建一个包含初始值的对象personalert(person.name); //sdcystalert(person["age"]); //18var person = {};person.name = "sdcy 阅读全文
posted @ 2012-11-23 15:05 Nick.Chung 阅读(182) 评论(0) 推荐(0) 编辑
摘要: function progress() { var value = $('#p').progressbar('getValue'); if (value < 100) { value += Math.floor(Math.random() * 10); $('#p').progressbar('setValue', value); var invoker = arguments.callee.caller || null; if (invoker != null) { ... 阅读全文
posted @ 2012-11-23 14:44 Nick.Chung 阅读(209) 评论(0) 推荐(0) 编辑