以下是asp.net 第一课笔记(仅仅记录不知道的,之前没用过,或用的比较少的) ashx (添加 一般处理程序) 类:HttpContext 虚拟路径转换为实际的物理路径 context.Request.MapPath(“reg.html”); 接受客户端表单数据:context.Request.Form 数据来自于POST 请...
赞 (0 )开心乐窝 9年前 (2016-02-11) 阅读(243) 附上源码:[Downlink href=”http://www.phpstu.com/wp-content/uploads/2016/02/文件计算器.zip”]文件计算器.zip[/Downlink] 可能是我太小心了,总感觉去 网上下载那些 计算软件 不安全,就自己写一个,主要用到的是 System.Security...
赞 (0 )开心乐窝 9年前 (2016-02-07) 阅读(221) linq 中这几个方法有时候会搞混(当然是因为不常用的原因),今天记录下,方便以后查看 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 4...
3原文地址:http://www.yanshiba.com/archives/638 (转载方便后续查找) 用 base64_encode 对用户名进行编码时,会出来等号,是不是可以去掉? 1: 为什么需要base64? ASCII码一共规定了128个字符的编码,这128个符号,范围在[0,127]之间. 其中,[0,31],及127, 33个属...
有这么三种格式 &# 加十进制数字 &# xdbd 十六进制格式 还有一种是 \u 十六进制 不过最终都是要把后面的转成10进制,然后转换成char 再转换成字符串 public static string uncode(string str) { string outStr = “”; str = st...
赞 (0 )开心乐窝 9年前 (2015-12-31) 阅读(196) 之前用PHP写正则的时候 对于换行问题可以直接加模式s 就可以了。但c#中的一个Multiline 模式仅仅改变的是 ^ $ 的行为 经过尝试搜索解决 加上(?s) (?s)<li gtype=.*?>.+?</li> 这样就可以让点号具有匹配换行符的能力 (?i) 进行不区分大小写的匹配 (?<name>&...
public static List<string> readDir(string path) { List<string> files = new List<string>(); if(!Directory.Exists(path)) { return null; } string[] dirs = Directory....
赞 (0 )开心乐窝 9年前 (2015-12-04) 阅读(227) 问题是这样的,在模型中动态修改关联信息 protected $_link=[ ‘user’=>[ ‘mapping_type’ => self::BELONGS_TO, ‘class_name’ => ‘user’, ‘...
赞 (0 )开心乐窝 9年前 (2015-12-04) 阅读(130) using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Security.Cryptography; namespace ffxiaCredit { class Encrypt { #region Base64编码 /...
赞 (0 )开心乐窝 10年前 (2015-09-17) 阅读(274) 通俗的来讲,“显示接口实现”就是使用接口名称作为方法名的前缀;而传统的实现方式称之为:“隐式接口实现”。费话不说,例子如下: interface IAnimal { void Dog(); } class Animal:IAnimal { public void Dog() { Console.WriteLine(“dog̷...
赞 (0 )开心乐窝 10年前 (2015-09-16) 阅读(186)