Fork me on GitHub

04 2014 档案

摘要:因为DataSet是离线的,所以SqlDataAdapter这个对象是连接DataSet和数据库的桥梁,所有对DataSet的操作(填充,更新等)都要通过他ado.net数据访问有两种方式:1.离线--通过DataSet,然后离线增,删,改,最后通过SqlDataAdapter解 析到数据库中2.直... 阅读全文
posted @ 2014-04-29 09:52 乔闻 阅读(364) 评论(0) 推荐(0) 编辑
摘要:public void ReplaceString(string TargetString, string NewString){ string FileSrc = System.Web.HttpContext.Current.Server.MapPath("../admin/TextFile1.txt"); if (File.Exists(FileSrc)) { StreamReader sr ... 阅读全文
posted @ 2014-04-28 15:40 乔闻 阅读(153) 评论(0) 推荐(0) 编辑
摘要:string FileSrc = Server.MapPath("TextFile1.txt"); if (File.Exists(FileSrc)) {StreamReader sr = File.OpenText(FileSrc);string srrow = null;while ((srrow = sr.ReadLine()) != null){ Response.Write(srrow... 阅读全文
posted @ 2014-04-28 14:08 乔闻 阅读(142) 评论(0) 推荐(0) 编辑
摘要:string FileSrc = Server.MapPath("Admin.aspx"); 阅读全文
posted @ 2014-04-28 13:47 乔闻 阅读(85) 评论(0) 推荐(0) 编辑
摘要:添加图文模块,标题地址:tencent://message/?uin=你的QQ号&Site=myqq&Menu=yes “你的QQ号”就写您自己的Q号 图片地址写:http://wpa.qq.com/pa?p=1:你的QQ号:13 “你的QQ号”改为您自己的。“13”为图片样式的序号,可以为1-17。 样式1:样式2:样式3:样式4:样式5:样式6:样式7:样式8:样式9:样式10:样式11:样式... 阅读全文
posted @ 2014-04-28 10:27 乔闻 阅读(1285) 评论(0) 推荐(0) 编辑
摘要:有问题 好像不太支持小数 阅读全文
posted @ 2014-04-28 09:56 乔闻 阅读(114) 评论(0) 推荐(0) 编辑
摘要:user在sql server中时一个关键字,如上面说所的,有时候我们无意中将其作为表的名称,当我们在sql语句中要使用该名称时例如:select *from user这是会提示user附近有语法错误,那该怎么办呢:其实只要在将user替换成 [user] 就Ok正确的为:select *from [user] 阅读全文
posted @ 2014-04-25 15:02 乔闻 阅读(561) 评论(0) 推荐(0) 编辑
摘要:DropDownList1.SelectedValue 阅读全文
posted @ 2014-04-24 14:12 乔闻 阅读(187) 评论(0) 推荐(0) 编辑
摘要:DDLName.DataSource = myRd;DDLName.DataTextField = "name";//要绑定的字段DDLName.DataValueField = "id";//要绑定的IDDDLName.DataBind(); 阅读全文
posted @ 2014-04-24 13:18 乔闻 阅读(141) 评论(0) 推荐(0) 编辑
摘要:Response.Write(""); 阅读全文
posted @ 2014-04-24 10:37 乔闻 阅读(278) 评论(0) 推荐(0) 编辑
摘要:debugger; 阅读全文
posted @ 2014-04-23 13:36 乔闻 阅读(176) 评论(0) 推荐(0) 编辑
摘要:SELECT ID, Title, FromTableFROM (SELECT ID, ArticleName AS Title, 'Article' AS FromTable FROM Article AS A UNION ALL SELECT ID, VideoName AS Title, 'Video' AS FromTable FROM Video AS V UNION ALL SELEC... 阅读全文
posted @ 2014-04-23 10:42 乔闻 阅读(245) 评论(0) 推荐(0) 编辑
摘要:string KZM=files[0].FileName.Substring(files[0].FileName.LastIndexOf(".") + 1); 阅读全文
posted @ 2014-04-22 11:02 乔闻 阅读(147) 评论(0) 推荐(0) 编辑
摘要:后台context.Response.ContentType = "text/html"; 阅读全文
posted @ 2014-04-22 09:49 乔闻 阅读(128) 评论(0) 推荐(0) 编辑
摘要:function ajaxFileUpload() { var File_box = document.getElementById('V_file'); var extend = File_box.value.substring(File_box.value.lastIndexOf(".") + 1); if (File_box.value == "" || File_box.value == ... 阅读全文
posted @ 2014-04-21 16:43 乔闻 阅读(654) 评论(0) 推荐(0) 编辑
摘要:File_box.value.substring(File_box.value.lastIndexOf(".") + 1); 阅读全文
posted @ 2014-04-21 16:32 乔闻 阅读(506) 评论(0) 推荐(0) 编辑
摘要:JavaScript 在浏览器执行的语言 与java的关系 张宇 张雨生 是解释型语言,无需编译就能运行,哪怕有语法错误,没有语法错误还是能运行. 开发环境 VS中JavaScript\JQuery的自动完成功能;VS08需要安装SP1补丁\VS10直接有 入门 Window对象 Window对象代表当前浏览器窗口,使用window对象的属性\方法的时候可以省略window,比如window... 阅读全文
posted @ 2014-04-21 14:03 乔闻 阅读(403) 评论(0) 推荐(0) 编辑
摘要:HTTP 1.1状态代码及其含义 状态代码 状态信息 含义 100 Continue 初始的请求已经接受,客户应当继续发送请求的其余部分。(HTTP 1.1新) 101 Switching Protocols 服务器将遵从客户的请求转换到另外一种协议(HTTP 1.1新)200 OK 一切正常,对GET和POST请求的应答文档跟在后面。 201 Created 服务器已经创建了文档,Locati... 阅读全文
posted @ 2014-04-21 14:01 乔闻 阅读(423) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2014-04-21 13:59 乔闻 阅读(180) 评论(0) 推荐(0) 编辑
摘要:添加用户:用户名:Email:电话: 用户名Email电话删除 阅读全文
posted @ 2014-04-21 13:58 乔闻 阅读(259) 评论(0) 推荐(0) 编辑
摘要:$(function () { $(".leftsecoundtitle").css({ "display": "none" }); $("#id1").toggle( function () { $("#id1 + .leftsecoundtitle").slideDown("normal"); $(this).css("background", "#E1E1E1"); //$(".zsfl-... 阅读全文
posted @ 2014-04-21 13:57 乔闻 阅读(161) 评论(0) 推荐(0) 编辑
摘要:document.getElementById('Content_Right_id').style.width = document.documentElement.clientWidth - 250 + 'px'; 阅读全文
posted @ 2014-04-21 13:56 乔闻 阅读(7133) 评论(1) 推荐(0) 编辑
摘要:页头ValidateRequest="false" KindEditor.ready(function (K) { window.editor = K.create('#', { uploadJson: '../Scripts/KindEditor/asp.net/upload_json.ashx', fileManagerJson: '../Scripts/KindEditor/asp.... 阅读全文
posted @ 2014-04-21 13:55 乔闻 阅读(215) 评论(0) 推荐(0) 编辑
摘要:window.onload = function () { document.getElementById('Select1').onclick = function () { var index = document.getElementById('Select1').selectedIndex; var a = document.getElementById('Text1'); a.setAt... 阅读全文
posted @ 2014-04-21 13:54 乔闻 阅读(320) 评论(0) 推荐(0) 编辑
摘要:$('#cc').combobox('setValue','bitem3').combobox('setText','bitem3') 阅读全文
posted @ 2014-04-21 13:53 乔闻 阅读(1147) 评论(0) 推荐(0) 编辑
摘要:ValidateRequest="false"引用编辑器要在最上端加入上面的话 阅读全文
posted @ 2014-04-21 13:52 乔闻 阅读(81) 评论(0) 推荐(0) 编辑
摘要:Untitled Page 阅读全文
posted @ 2014-04-21 13:51 乔闻 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2014-04-21 13:50 乔闻 阅读(239) 评论(0) 推荐(0) 编辑
摘要:算法:先找一层,再递归 阅读全文
posted @ 2014-04-21 13:49 乔闻 阅读(162) 评论(0) 推荐(0) 编辑
摘要://缩放和布局$(window).resize(function () { $('#BZ_Content').datagrid('resize', { width: getWidth(0.992) })});function getWidth(percent) { if ($("body").width() < 950) { return 950; } else return $("body").... 阅读全文
posted @ 2014-04-21 13:49 乔闻 阅读(268) 评论(0) 推荐(0) 编辑
摘要:function FormButton() { $.ajax({ type: "post", url: "Competition.ashx", data: "name=John&location=Boston", success: function (msg) { alert("Data Saved: " + msg); } });} 阅读全文
posted @ 2014-04-21 13:48 乔闻 阅读(87) 评论(0) 推荐(0) 编辑
摘要:select * from (select t.*,rownum no from " + table + " t where scbj=0)where (no>(" + PageNo + "-1)*" + PageSize + " and no(1-1)*20 and no<=(1)*20) update TB_BZ_CONTENT set MC='名称99',LB=1,WZDZ='名称99'... 阅读全文
posted @ 2014-04-21 13:45 乔闻 阅读(141) 评论(0) 推荐(0) 编辑
摘要:读 response.SetCokie(new HttpCookie("Color",TextBox1.Text);写 request.Cookies["color"].Value; 阅读全文
posted @ 2014-04-21 13:43 乔闻 阅读(137) 评论(0) 推荐(0) 编辑
摘要:OracleConnection conn = c.GetConnection(); OracleCommand cmd = new OracleCommand(); cmd.Connection = conn; cmd.CommandText = "update t_user set U_ACCOUNT=:U_ACCOUNT,U_NAME=:U_NAME,U_TYPE=:U_TYPE,U_CO... 阅读全文
posted @ 2014-04-21 13:42 乔闻 阅读(264) 评论(0) 推荐(0) 编辑
摘要:return System.Text.RegularExpressions.Regex.Replace(HTMLStr, "]*>", ""); 阅读全文
posted @ 2014-04-21 13:41 乔闻 阅读(217) 评论(0) 推荐(0) 编辑
摘要:AspNetPager使用方法引入dll 拖入控件 bindList()://数据总数pager.RecordCount = int ;//repeater绑定数据源FlowList.DataSource = datatable;//repeater绑定数据FlowList.DataBind();//页change行为 protected void pager_PageChanging(obje... 阅读全文
posted @ 2014-04-21 13:40 乔闻 阅读(360) 评论(0) 推荐(0) 编辑
摘要:///反转码 mdata[k].MNAME = unescape(mdata[k].MNAME);程家楠 13:51:00 Microsoft.JScript.GlobalObject.escape(dt.Rows[i][mDc].ToString());程家楠 13:51:49 var mdata = eval('(' + msg + ')'); for (var k = 0; k < m... 阅读全文
posted @ 2014-04-21 13:38 乔闻 阅读(267) 评论(0) 推荐(0) 编辑
摘要:DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") 阅读全文
posted @ 2014-04-21 13:37 乔闻 阅读(3314) 评论(0) 推荐(0) 编辑
摘要:public string GetTreeNav(int ID,int Num) { StringBuilder sb = new StringBuilder(); sb.Append("[{\"id\":1,\"text\":\"根目录\",\"children\":["); sb.Append(GetTreeSon... 阅读全文
posted @ 2014-04-21 13:35 乔闻 阅读(268) 评论(0) 推荐(0) 编辑
摘要:window.onload = function () { document.getElementById('text1').onblur = function () { if (isNaN(document.getElementById('text1').value)) { 验证输入的字符是否为数字 al... 阅读全文
posted @ 2014-04-21 13:33 乔闻 阅读(266) 评论(0) 推荐(0) 编辑
摘要:string url = "https://quanapi.sinaapp.com/fetion.php?u=" + PhoneNum + "&p=" + PhonePassword + "&to=" + ToNum + "&m=" + ToContent; 阅读全文
posted @ 2014-04-21 13:31 乔闻 阅读(120) 评论(0) 推荐(0) 编辑
摘要:select t.*, t.rowid from tb_bz_content t join tb_bz_class c on t.lb=c.id where c.flid=85select * from Article where ArticleClassID in (select ID from Class where ParentID=11) 阅读全文
posted @ 2014-04-21 13:30 乔闻 阅读(139) 评论(0) 推荐(0) 编辑
摘要://缩放和布局 $(window).resize(function () { $('#BZ_Content').datagrid('resize', { width: getWidth(1),height: getheight(1) }) }); 阅读全文
posted @ 2014-04-21 13:25 乔闻 阅读(134) 评论(0) 推荐(0) 编辑
摘要:WEB.config: 数据库类:DBTool.cs: public class DBTool { public OracleConnection GetConnection() { string str = ConfigurationManager.ConnectionStrings["conn"].Connectio... 阅读全文
posted @ 2014-04-21 13:22 乔闻 阅读(717) 评论(0) 推荐(1) 编辑
摘要:select * from (select t.*,rownum no from " + table + " t where scbj=0)where (no>(" + PageNo + "-1)*" + PageSize + " and no(1-1)*20 and no<=(1)*20)update TB_BZ_CONTENT set MC='名称99',LB=1,WZDZ='名称99',D... 阅读全文
posted @ 2014-04-21 13:20 乔闻 阅读(357) 评论(0) 推荐(0) 编辑
摘要:context.Response.ContentType = "text/html"; string fullpath = context.Server.MapPath("hello.htm"); context.Response.Write(fullpath); string content = System.IO.File.ReadAllText(fu... 阅读全文
posted @ 2014-04-21 13:17 乔闻 阅读(589) 评论(0) 推荐(1) 编辑
摘要:///宁采花 8:37:39/// /// 获取数据链接 /// /// public OracleConnection GetConnection() { string str = Configur... 阅读全文
posted @ 2014-04-21 13:09 乔闻 阅读(301) 评论(0) 推荐(0) 编辑