2017年11月21日
摘要: // GET: api/showApi /// <summary> /// 显示 查询 /// </summary> /// <param name="name"></param> /// <param name="type"></param> /// <returns></returns> [Ht 阅读全文
posted @ 2017-11-21 19:39 过客s 阅读(137) 评论(0) 推荐(0) 编辑
  2017年11月19日
摘要: API using System;using System.Collections.Generic;using System.Linq;using System.Net;using System.Net.Http;using System.Web.Http;using System.Web.Http 阅读全文
posted @ 2017-11-19 19:53 过客s 阅读(148) 评论(0) 推荐(0) 编辑
摘要: WindowsForms 后台 using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;usi 阅读全文
posted @ 2017-11-19 19:29 过客s 阅读(280) 评论(0) 推荐(0) 编辑
摘要: --数据库表名 CREATE TABLE BANKUSER( BID INT PRIMARY KEY IDENTITY, BNUM NVARCHAR(50), BNAME NVARCHAR(50) , BPWD NVARCHAR(50), BMONEY DECIMAL ) --数据库表名 CREAT 阅读全文
posted @ 2017-11-19 19:05 过客s 阅读(175) 评论(0) 推荐(0) 编辑
摘要: StringBuilder sql = new StringBuilder(); sql.Append(@"if exists(select * from sys.objects where name='V_stu') drop view V_stu" ); //判断是否有视图 DbHelper.E 阅读全文
posted @ 2017-11-19 19:04 过客s 阅读(99) 评论(0) 推荐(0) 编辑
摘要: 数据库的存储 alter PROCEDURE Proc_stu @PageIndex int, //页数 @PageSize int,//显示条数 @where nvarchar(50),//条件 @Tocount int output, //返回值 @totName nvarchar(50),// 阅读全文
posted @ 2017-11-19 19:00 过客s 阅读(157) 评论(0) 推荐(0) 编辑
  2017年11月14日
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Mvc;using WebApplication1.Models;using Model;using B 阅读全文
posted @ 2017-11-14 21:01 过客s 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 前台 @{ Layout = null;}@model List<Model.stuModel><!DOCTYPE html> <html><head> <meta name="viewport" content="width=device-width" /> <title>Index</title 阅读全文
posted @ 2017-11-14 14:14 过客s 阅读(177) 评论(0) 推荐(0) 编辑
摘要: using Microsoft.Office.Interop.Word;using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;u 阅读全文
posted @ 2017-11-14 14:10 过客s 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 服务端 using System.Text;using System.Threading.Tasks;using System.Windows.Forms;using System.Threading;using System.Net.Sockets;using System.Net; namesp 阅读全文
posted @ 2017-11-14 14:08 过客s 阅读(123) 评论(0) 推荐(0) 编辑