上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页
摘要: 在ASP.NET中 重写URL: 创建一个web项目,内容如下: public class RouteConfig { public static void RegisterRoutes(RouteCollection routes) { routes.MapPageRoute("default", 阅读全文
posted @ 2018-11-02 22:07 水墨晨诗 阅读(496) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <img src="" id='myimg' width="50" height="50"> < 阅读全文
posted @ 2018-10-14 12:01 水墨晨诗 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 读图write_imageread_image *图片路径 FilePath:='d:/pic/demo.jpg' *判断文件是否存在 file_exists ('/bin/cc', FileExists) if(FileExists) *读取图片 read_image(Image,FilePath 阅读全文
posted @ 2018-08-15 09:28 水墨晨诗 阅读(679) 评论(0) 推荐(0) 编辑
摘要: //常用的上下文对象 string a = Request.QueryString[""];//获取Get请求发送的变量 string b = Request.Form[""];//获取Post请求发送的变量 string c = Request.Cookies[""].ToString();//获 阅读全文
posted @ 2018-07-24 22:18 水墨晨诗 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 边缘检测:分隔图像中的明,暗区域的边界。工业边缘检测的工具叫卡尺工具。边缘检测的步骤: 1、执行投影处理;投影处理用于获取平均强度,减少由测量区域中的噪点所引起的失败的检测。 2、执行微分处理:执行微分处理可以消除测量区域中绝对强度值变化而造成的影响。如果颜色值从白色(255)变为黑色(0),那么变 阅读全文
posted @ 2018-07-23 16:40 水墨晨诗 阅读(580) 评论(0) 推荐(0) 编辑
摘要: 原文地址:https://www.cnblogs.com/dotnet261010/category/1137015.html https://esofar.gitbooks.io/dapper-tutorial-cn/utilities/stored-procedure.html?q= 在安装的时 阅读全文
posted @ 2018-07-10 16:47 水墨晨诗 阅读(527) 评论(0) 推荐(0) 编辑
摘要: 习惯了vs的快捷键,用sublime的时候始终感觉不太跟手。 点击 “首选项”→“按键绑定-默认” 在新的界面中就可以更改你想要的快捷键了。 1、自动格式化对齐: 查找 "command": "reindent" ,然后将对应的快捷键替换成希望用到的快捷键(这里是{ "keys": ["ctrl+k 阅读全文
posted @ 2018-06-17 19:53 水墨晨诗 阅读(115) 评论(0) 推荐(0) 编辑
摘要: print 阅读全文
posted @ 2018-06-04 22:28 水墨晨诗 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 一个制作矢量图标(SVG)的网址:https://icomoon.io/ <a href="index2.html">index</a> <a href="myPage/index2.html">index</a> <!-- 目录语法,斜杠前面表示文件夹的名字,在哪个文件夹里面,就写哪个文件夹的名字 阅读全文
posted @ 2018-05-27 15:06 水墨晨诗 阅读(317) 评论(0) 推荐(0) 编辑
摘要: 原文地址:https://blog.csdn.net/nihao198503/article/details/9204115 将代码原封不动的copy过来,只是因为有关tar的文章太少,大多都是zip的文章 /// <summary> /// 生成 ***.tar.gz 文件 /// </summa 阅读全文
posted @ 2018-05-22 11:39 水墨晨诗 阅读(4009) 评论(1) 推荐(0) 编辑
摘要: private void button1_Click(object sender, EventArgs e){ Timer timer1 = new Timer(); timer1.Interval = 1000; timer1.Enabled = truestyle="color: #000000 阅读全文
posted @ 2018-05-10 09:36 水墨晨诗 阅读(461) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System. 阅读全文
posted @ 2018-05-03 21:40 水墨晨诗 阅读(181) 评论(2) 推荐(0) 编辑
摘要: 主要是为了提醒自己要——保重 阅读全文
posted @ 2018-04-18 21:29 水墨晨诗 阅读(3048) 评论(0) 推荐(0) 编辑
摘要: 查找替换 ctrl + r注释 ctrl+/格式化代码 ctrl+alt+l 跳转到定义 ctrl+alt+b 常用数据类型 数值类型:int float是两个比较常用的数值类型。Bool类型。String类型。'vichin' "vichin" """vichin""" '''vichin''' 阅读全文
posted @ 2018-04-16 20:43 水墨晨诗 阅读(391) 评论(0) 推荐(0) 编辑
摘要: 先到python 官网下载python。 下载好了之后,直接运行exe文件,进行安装(在安装程序运行后的第一个form上,点击next的时候,在next的左侧有一排文字和一个复选框,那个是添加环境变量,记得勾上。) 安装好了之后,可以在控制台中输入python再按回车来确认是否安装成功! 下面是到p 阅读全文
posted @ 2018-04-15 12:27 水墨晨诗 阅读(713) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页