摘要:
1.首先上表和模型 阅读全文
摘要:
1.page-->最复杂: * pageEncoding和contentType: >pageEncoding:它指定当前jsp页面的编码,在服务器要把jsp编译成.java时需要使用pageEncoding。 >contentType:它标识添加一个响应头 Content-Type 等同于response.setContentType("text/html;charset=utf-8... 阅读全文
摘要:
纯属个人笔记,如有问题大家可以一起沟通。 阅读全文
摘要:
2.Orders订单表 纯属个人笔记,如有问题大家可以一起沟通。 阅读全文
摘要:
通过几天的研究效果,如果在vs2010工具上通过webservice还是比较简单的,毕竟是一个项目。 如果您想通过HTML5 做出来的移动APP去访问c#做出来的webservice,那么就没那么简单了,应为不是一个项目,而且部署到外网服务器上以后数据跨域访问。 自己琢磨了两三天,还搞了一台腾讯云服 阅读全文
摘要:
调用微软提供给wince的API “coredll.dll” 用系统自带的API获取屏幕分辨实现窗体居中,不管是哪个WinCE系统的设备都可以使用的方法。 http://www.ybtiaoma.com 阅读全文
摘要:
其他条码知识 请访问:http://www.ybtiaoma.com ,本文仅供参考,请勿转载,谢谢using System;using System.Drawing;using System.Drawing.Printing;using System.Runtime.InteropServices... 阅读全文
摘要:
namespace YongFa365.Validator { using System; using System.Text.RegularExpressions; /**//// /// RegExp Soruce: http://regexlib.com/DisplayPatterns.aspx /// Author:柳永法 yongfa36... 阅读全文
摘要:
//把T_Seats中的输入导出到Excel private void button3_Click(object sender, EventArgs e) { //1.读取 string sql = "select * from T_Seats"; using (SqlDataReader r... 阅读全文
摘要:
转至:http://www.cnblogs.com/fwind/archive/2012/04/13/2445380.html 在C#中,十进制和十六进制转换非常简单,方法如下: 十进制转为十六进制: 十六进制转为十进制: 也可以使用下述方法: 阅读全文