随笔分类 -  WEB

摘要:CREATE DEFINER=`root`@`%` PROCEDURE `sp_GeneralPaging`( #输入参数 _fields VARCHAR(200), #要查询的字段,用逗号(,)分隔 _tables VARCHAR(200), #要查询的表 _where VARCHAR(200), 阅读全文
posted @ 2018-12-24 10:28 CoderWayne 阅读(250) 评论(0) 推荐(0) 编辑
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Drawing.Imaging; using System.Drawing; using System.IO; namespace TestUploadImage.FinalUse { pub... 阅读全文
posted @ 2018-11-16 15:16 CoderWayne 阅读(356) 评论(0) 推荐(0) 编辑
摘要:空 阅读全文
posted @ 2009-11-22 18:05 CoderWayne 阅读(339) 评论(0) 推荐(0) 编辑
摘要:using System; using System.Web; public class UploadImage : IHttpHandler { //文件上传目录 private string uploadFolder = "UploadImage"; public void ProcessRequest(HttpContext context) { ... 阅读全文
posted @ 2009-10-31 11:48 CoderWayne 阅读(446) 评论(0) 推荐(0) 编辑
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Net.Sockets; using System.IO; using System.Net; namespace CSSocketServer { class Program { ... 阅读全文
posted @ 2009-07-27 17:51 CoderWayne 阅读(486) 评论(0) 推荐(0) 编辑
摘要:无标题文档 阅读全文
posted @ 2009-07-18 11:42 CoderWayne 阅读(167) 评论(0) 推荐(0) 编辑
摘要:简单的测试页面 请点击 --> 03号拖拉机 01号拖拉机 02号拖拉机 03号拖拉机 04号拖拉机 05号拖拉机 06号拖拉机 07号拖拉机 08号拖拉机 09号拖拉机 10号拖拉机 11号拖拉机 Move 登陆内容在这里哦 阅读全文
posted @ 2009-07-18 11:40 CoderWayne 阅读(274) 评论(0) 推荐(0) 编辑
摘要:SqlConnection conn = new SqlConnection(System.Configuration.ConfigurationManager.ConnectionStrings["Shop"].ConnectionString); 阅读全文
posted @ 2009-05-20 05:17 CoderWayne 阅读(296) 评论(0) 推荐(0) 编辑
摘要:WebService代码 页面代码: 阅读全文
posted @ 2009-05-07 17:55 CoderWayne 阅读(320) 评论(0) 推荐(0) 编辑
摘要:1.通配选择符(Universal Selector) 通配选择符(以*表示)起通配符的作用,意思是将选择其辖域内的所有元素。 改变整个文档的字体大小和颜色: 改变table下所有元素的颜色及对齐方式: 2.类型选择符(Type Selectors) 以文档语言对象(Element)类型作为选择符。 阅读全文
posted @ 2009-05-07 14:53 CoderWayne 阅读(480) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2009-02-20 11:34 CoderWayne 阅读(243) 评论(0) 推荐(0) 编辑
摘要:C#: HTML: 孟子的进度效果: Response.Write("<div id='mydiv' >"); Response.Write("_"); Response.Write("</div>"); Response.Write("<script>mydiv.innerText = '';</ 阅读全文
posted @ 2008-12-23 04:59 CoderWayne 阅读(405) 评论(0) 推荐(0) 编辑
摘要:在页面中添加一个按钮,调用此函数,参数为this.Page,如: 阅读全文
posted @ 2008-11-24 11:58 CoderWayne 阅读(248) 评论(0) 推荐(0) 编辑
摘要:if(trim(txt.value)=="") { return "用户名不能为空"; } if(txt.value.length16) { return "必须为2-16位字符"; } if((/\s/).test(txt.value)) { return "不能含有空格"; } return ""; 阅读全文
posted @ 2008-10-31 16:54 CoderWayne 阅读(298) 评论(0) 推荐(0) 编辑
摘要:SlideMenu 阅读全文
posted @ 2008-07-09 06:59 CoderWayne 阅读(196) 评论(0) 推荐(0) 编辑
摘要:WebService HTML 阅读全文
posted @ 2008-06-24 19:21 CoderWayne 阅读(273) 评论(0) 推荐(0) 编辑
摘要:例子: 阅读全文
posted @ 2008-05-13 18:05 CoderWayne 阅读(255) 评论(0) 推荐(0) 编辑
摘要:数据如下: 采用第三方组件 Jayrock 和 Jayrock.Json 首先引入命名空间 其次,创建 JsonObject 对象,步骤如下: 这样,就将一个文本的JSon数据转变成一个对象,如果要获取 count 的值,则可以这样 但是有个问题,list 是一个数组,该如何获取呢?不用急,Jayr 阅读全文
posted @ 2008-05-07 17:42 CoderWayne 阅读(445) 评论(0) 推荐(0) 编辑
摘要:在我本地测试当中:在IE、FireFox、Opera下都可以使用document.body.clientWidthdocument.body.clientHeight即可获得,很简单,很方便。 而在公司项目当中:Opera仍然使用document.body.clientWidthdocument.b 阅读全文
posted @ 2008-04-25 12:05 CoderWayne 阅读(395) 评论(0) 推荐(0) 编辑
摘要:var bdy = (document.documentElement && document.documentElement.clientWidth)?document.documentElement:document.body; var topPx = 80;//距离顶部的距离 //页面加载 function myload() { document.getElementById("... 阅读全文
posted @ 2008-04-25 12:00 CoderWayne 阅读(307) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示