ASP.NET Function
albert528108
十年以上C#.NET开发,熟悉MES系统
展开
-
DataList分页
WebConfig Show.aspx 会员: 评论内容: 发表时间: <webdiyer:AspNetPage原创 2016-07-10 12:26:01 · 574 阅读 · 0 评论 -
MESPRO
http://www.cnblogs.com/willick/p/4172174.htmlProdTasks: Firmed 表示PlanDt不在会之前排程MatrixDeviation:表示Schedule在上模时不检测ResMatrixesCycleUnit:几个信号做一个产品Part:Operation如果一个产品需要两个工序完成,ERP只开一原创 2016-09-04 15:51:53 · 871 阅读 · 0 评论 -
EnumHelper
/// /// Get all enum descriptors. /// /// Enum type /// Enum descriptor list public static IList> GetEnumDescriptor(Type enumType) { if (enumT原创 2016-08-24 17:55:55 · 456 阅读 · 0 评论 -
Descriptor
/// /// Descriptor information. /// public class Descriptor { /// /// Key. /// public K Key { get; set; } /// /// Name. ///原创 2016-08-24 17:48:49 · 550 阅读 · 0 评论 -
博客
1.MEFhttp://www.cnblogs.com/beniao/archive/2010/08/11/1797537.html2.WPFhttp://www.cnblogs.com/Jax/category/88715.html原创 2016-08-03 23:02:55 · 312 阅读 · 0 评论 -
Project
1. Sorted the files private FileInfo[] Sort(FileInfo[] fileArray) { Array.Sort(fileArray, (f1, f2) => { return f1.Name.CompareTo(f2.Name); });原创 2016-08-08 14:09:37 · 403 阅读 · 0 评论 -
Eidt Value setting
/// /// Set SpinEdit integer format. /// /// SpinEdit Control /// Min Value /// Max Value public static void SetIntegerFormat(this SpinEdit editContro原创 2016-08-29 09:45:56 · 561 阅读 · 0 评论 -
RAR下载
if (Request["provinceId"] != null) { int provinceId = Convert.ToInt32(Request["provinceId"]); string userCode = SessionHelper.Get(SessionHelper.USERCODE);原创 2016-07-08 14:36:13 · 507 阅读 · 0 评论 -
Ajax调用例子
Ajax.cs public class Ajax { public Ajax() { } [AjaxPro.AjaxMethod] public static string GetText1(string a){ return "aa"; } [AjaxPro.AjaxMethod]原创 2016-07-08 14:54:54 · 395 阅读 · 0 评论 -
验证码
CodeHandler.ashx public class CodeHandler : IHttpHandler, IRequiresSessionState { public void ProcessRequest(HttpContext context) { string code = string.Empty;原创 2016-07-08 14:43:31 · 663 阅读 · 0 评论 -
asp.net : 拒绝频繁的IP访问
//首先我们要实现 IHttpModule接口using System;using System.Collections.Generic;using System.Text;using System.Web;using System.Web.UI;using System.Web.SessionState;using System.Configuration;转载 2016-07-05 11:26:08 · 1457 阅读 · 0 评论 -
刷新页面
listPagerefresh.jsvar _c = 0;var _timer;$(function () { $('#timer').click(function(){ if(_timer){ $('#timer').addClass('timer_pause'); window.clearTimeout(_tim原创 2016-07-11 15:59:37 · 435 阅读 · 0 评论 -
PublicFunction
GetUserIP public static string GetUserIP() { String clientIP = ""; if (System.Web.HttpContext.Current != null) { clientIP = System.Web.HttpContext.Curr原创 2016-07-11 11:06:39 · 2155 阅读 · 0 评论 -
自定义控件
WebConfig Main.Master UserInfo.cs[ToolboxData("")] public class UserInfo : WebControl { protected override void RenderContents(HtmlTextWriter w原创 2016-07-10 12:31:49 · 245 阅读 · 0 评论 -
C# DataTable 和List之间相互转换的方法
一、List<T>/IEnumerable转换到DataTable/DataView方法一: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21...转载 2019-08-06 11:30:24 · 455 阅读 · 0 评论