2019年1月23日

ASP.Net上传文件

摘要: 在做Web项目时,上传文件是经常会碰到的需求。ASP.Net的WebForm开发模式中,封装了FileUpload控件,可以方便的进行文件上传操作。但有时,你可能不希望使用ASP.Net中的服务器控件,仅仅使用Input标签来实现文件上传。当然也是可以的。下面总结在项目中使用过的上传文件的方式。 一 阅读全文

posted @ 2019-01-23 14:39 心所欲 阅读(12928) 评论(1) 推荐(0) 编辑

SQL基础语法

摘要: 数据库: 结构化查询语言(Structured Query Language)简称SQL; 数据库管理系统(Database Management System)简称DBMS; 数据库管理员(Database Administration)简称DBA,功能是确保DBMS的正常高效运行; 数据库分体验 阅读全文

posted @ 2019-01-23 14:33 心所欲 阅读(3914) 评论(2) 推荐(0) 编辑

JS实现定时器

摘要: 导出:jquery.timers-1.2.js jQuery Timers提供了三个函式 1. everyTime(时间间隔, [定时器名称], 函式名称, [次数限制], [等待函式程序完成])2. oneTime(时间间隔, [定时器名称], 呼叫的函式)3. stopTime ([定时器名称] 阅读全文

posted @ 2019-01-23 14:19 心所欲 阅读(2377) 评论(0) 推荐(0) 编辑

C#实现CRC校验

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Web; namespace WeChat.CRC{ public class CRC { #region C 阅读全文

posted @ 2019-01-23 14:16 心所欲 阅读(19368) 评论(1) 推荐(3) 编辑

ASP.NET实现二维码

摘要: using System;using System.Collections.Generic;using System.Drawing;using System.Linq;using System.Text;using System.Web;using System.Web.UI;using Syst 阅读全文

posted @ 2019-01-23 14:12 心所欲 阅读(1899) 评论(1) 推荐(0) 编辑

导航