摘要: C# 整个网页保存成图片 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; 阅读全文
posted @ 2020-09-21 09:11 奔跑的神族小蝌蚪 阅读(270) 评论(0) 推荐(0) 编辑
摘要: mysql增删改查语句大全 #登录数据库mysql -hlocalhost -uroot -p;#修改密码mysqladmin -uroot -pold password new;#显示数据库show databases;#显示数据表show tables;#选择数据库use examples;#创 阅读全文
posted @ 2020-09-09 15:03 奔跑的神族小蝌蚪 阅读(283) 评论(0) 推荐(0) 编辑
摘要: 在cookie中取值 function getCookie(name) { var arr, reg = new RegExp("(^| )" + name + "=([^;]*)(;|$)"); //匹配字段 if (arr = document.cookie.match(reg)) { retu 阅读全文
posted @ 2020-08-03 00:33 奔跑的神族小蝌蚪 阅读(209) 评论(0) 推荐(0) 编辑
摘要: namespace WebApplication1.Models { public class APIFileHelp { public string[] ExtentsfileName = new string[] { ".doc",".txt", ".xls", ".png", ".jpg" } 阅读全文
posted @ 2020-07-22 16:27 奔跑的神族小蝌蚪 阅读(142) 评论(0) 推荐(1) 编辑
摘要: 文件上传 导入依赖: <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>1.2</version> </dependency> <dependency> <groupId>c 阅读全文
posted @ 2020-07-22 16:01 奔跑的神族小蝌蚪 阅读(127) 评论(0) 推荐(0) 编辑
摘要: MVC上传文件 ASP.NET MVC上传文件是必段撑握的知识。加强训练才是。以前Insus.NET曾使用第三方MyAjaxForm.js :http://www.cnblogs.com/insus/p/3785484.html 或者是jQuery的Uploadify组件:http://www.cn 阅读全文
posted @ 2020-07-22 15:01 奔跑的神族小蝌蚪 阅读(144) 评论(0) 推荐(0) 编辑
摘要: create database ZuoYeuse ZuoYe select * from OrderInfoesselect * from Goodsselect * from Shopsselect c.Id,c.ShopId,c.UserId,g.Name,g.Img,g.Price,s.SNa 阅读全文
posted @ 2020-07-10 08:17 奔跑的神族小蝌蚪 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 电商项目 数据库: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Model { //用户表 阅读全文
posted @ 2020-07-09 20:55 奔跑的神族小蝌蚪 阅读(263) 评论(1) 推荐(2) 编辑
摘要: <h2>ZhuCe</h2><table class="table"> <tr> <td>请输入用户名:</td> <td> <input id="UserName" type="text" /> </td> </tr> <tr> <td>请输入密码:</td> <td> <input id="Pa 阅读全文
posted @ 2020-07-09 09:26 奔跑的神族小蝌蚪 阅读(78) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Net;using System.Net.Http;using System.Web.Http;using WebApplication15.Mo 阅读全文
posted @ 2020-07-09 09:18 奔跑的神族小蝌蚪 阅读(138) 评论(0) 推荐(0) 编辑