- 博客(54)
- 资源 (1)
- 收藏
- 关注
转载 有用的jquery搜集
A fluid asymmetrical animated grid plugin for jQuery.http://jsonenglish.com/projects/flex/6 Amazing jQuery Plugins to design Pinterest like Dynamic Grid Layouthttp://www.wtfdiary.com/2012/
2013-08-18 22:07:15 799
转载 点击显示/隐藏 一个div
add-new-block为div的class名称$(document).ready(function(){ $(".add-new-block").hide(); $(".btn-addNewAddress").click(function(){$(".add-new-block").show(); }); $(".add-new-cancel
2013-08-15 16:00:59 1080
转载 website methodology
(from stackoverflow)I am currently writing a CMS and remember someone (it might have been on here) criticise the existing CMS for not having a robust enough user permissions system. I've got a met
2013-07-18 18:20:44 609
转载 asp.net中session的原理及应用
http://www.cnblogs.com/knowledgesea/archive/2012/11/20/2779185.html
2013-07-18 16:18:31 624
原创 sql按日期排序並特殊id置底
select * from fairs where iscms=0 order by case when fair_id=28 then dateadd(year,100,fairdatei) else fairdatei end asc
2013-07-18 11:22:16 692
转载 动态插入asp控件
在html代码中是这样解释的:所以无法使用,来返回字符串而动态生成asp控件解决方法: 放在需要插入控件的位置;后台(C#): Button myButton = new Button(); myButton.Text = "Apply To "; myButton.Click += new EventHandler(this
2013-07-12 15:58:47 646
转载 select max(ID)查询char类型,获取到的最大值只能到9的問題
字符比较是按位取值,id第一位最大值就是9了,需要先转换一下数据类型SELECT MAX(convert(int,substring(id,1,len(story_id)))) FROM table WHERE col='test'id123456789
2013-07-11 10:44:00 4000
转载 innerHTML用法
用法:比如在中写了如下的代码:现在用top.innerHTML="..........";的方法就可以向这个id的位置写入HTML代码了。例如top.innerHTML="";就可以在top对应的位置出现一个button了!爽吧,在公告前加javascript就行老,直接改HTML。。。function Test(){ var
2013-07-02 18:29:08 575
原创 在javascript中將json字符串轉為json對象
Obviously you can do this unsafely with something like:var jsonobj = eval("(" + jsonstr + ')');but that leaves us vulnerable to the json string containing other code, which it seems very dangerous
2013-07-02 18:25:16 530
转载 jquery 實現table row拖動排序
aspx file: function setSortable() { $("#admintbl tbody").sortable({ update: function (event, ui) { var f = ui.item;
2013-06-28 09:58:08 4062
原创 Visual Studio 編輯器主題顏色修改
護眼,節能?的主題,(使用eclipse的可以google: eclipse color theme)http://studiostyl.es/下載之後按照FAQ裡的方法import就可以了
2013-06-26 10:07:08 1040
原创 What is the best(funniest) comment in source code you have ever encountered?
FROM: http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/*** For the brave souls who get this far: You are the chosen ones,* the valiant kn
2013-06-25 14:22:48 772
转载 js 驗證url
function check_it(){ var theurl=document.getElementById("testtesttest").value; var tomatch= #rules here#; if (tomatch.test(theurl)){ window.alert("URL OK."); return
2013-06-21 15:39:37 594
转载 ASP.NET 使用Request.Files获取<input type=file/>上传文件
我们知道,对于 ASP.NET 的服务器端控件 FileUpload 来说,可以直接用 FileUpload1.PostedFile 这样的代码来获取上传文件框的文件。但如果我们没有用 FileUpload,而直接用的 这样的 HTML 控件,ASP.NET 又如何取这些内容呢?用 Request.Files。Request.Files.Count 客户端传了
2013-06-20 18:08:32 56319 3
转载 ASP.Net篇之QueryString与页面传值的总结
首先补充一下Session的删除:移除个别:Session.Remove("aa");全部清除:Session.Clear(); (一般应用于注销) QueryString:如果传中文的时候出了问题的话,解决方法:编码问题:另外一个方法是在QueryString中先用它对汉字编码: Server.UrlEncode(汉
2013-06-19 17:54:48 1017
转载 excel數據庫sql妙用——批量查詢
有一個excel表格裡的大量數據,比如id,name,批量更新或者刪除怎麼做呢,方法如下:在一列數據的兩側插入空白列,比如【空白列】【name】【空白列】【id】,然後在第一行空白列寫入,例如:【update table set tb_name=】【name】【 where id=】【id】,然後分別全選兩新增列,分別按ctrl+d,搞定!and 然後全部內容複製到notepad++等
2013-06-19 17:08:48 1007
原创 The name 'xxx' does not exist in the current context 錯誤解決方法之一
嵌套在內層的asp:datalist或者其他控件是無法直接被code behind調用的,應該現在外層的datalist加事件onitemdatabound事件處理函數,使用方法如下aspx文件: '>
2013-06-19 16:43:12 21695 6
转载 XmlDataSource控件绑定asp:Repeater
" >---Please Select--- " > xml: Yarns , Piecegoods & Textiles 紗線、布匹及紡織品 xmldatasourc
2013-06-19 14:05:14 1492
转载 XML和HTML常用转义字符
XML和HTML中都有一些特殊的字符,这些字符在XML和HTML中是不能直接使用的,如果必须使用这些字符,应该使用其对应的转义字符。XML常用转义字符:字符转义字符描述&&和<小于号>>大于号
2013-06-19 13:58:13 559
转载 sql學習
update table set col=~col where col=5update a set a.ziduan= b.ziduanFROM biao AS a,biao AS bwhere a.id=44 and b.id=43
2013-06-13 11:54:56 486
转载 [asp.net] xheditor 圖片上傳 功能
最近在一个开发源码的系统里,把原来html编辑器换成了国产开源的xhEditor。在此记录下嵌入的步骤和注意事项。(目前在此写的就是xhEditor,呵呵。CSDN用的就是这个)1. 下载: http://xheditor.com/ 下载最新版本编辑器2.相关目录文件放入项目: 1)把解压包里的xheditor_emo
2013-06-10 10:16:46 1111
转载 asp.net 按钮动态添加事件
有时在ASP.NET里,为了页面的灵活性,我们要用到动态创建控件并且取它们的值,下面是写的一段小小的后台代码,以便参考。 using System; using System.Data; using System.Configuration; using System.Collections; using System.We
2013-06-06 13:56:50 1723
转载 asp.net 圖片上傳方法/匯總/縮放截取
ASP.NET 上传图片自动压缩指定大小,找到: imgFile.SaveAs(filePath);代码后加入 public void SmallPic(string PicPath, int intWidth)http://www.kindsoft.net/view.php?bbsid=7&postid=6186&pagenum=1JQuery上传插件Uploadify使
2013-06-05 17:16:16 799
转载 asp.net中OnClick与OnCommand的区别及用法
1、OnClick事件 OnClick事件很简单,单击按钮时触发,不多说,也不解释,主要说说OnCommand事件的用法;2、OnCommand事件 通过设置 CommandName 属性而具有与按钮关联的命令名(如“排序”)。这使您可以在 Web 窗体页上创建多个 Button 控件,并在 Command 事件的事件处理程序中以编程方式确定单击了哪
2013-06-05 13:50:48 3832
转载 ASP.NET数据库连接字符串总结
一、使用OleDbConnection对象连接OLE DB数据源1.连接Access 数据库Access 2000:“provider=Microsoft.Jet.Oledb.3.5;Data Source=Access文件路径”Access 2003:“provider=Microsoft.Jet.Oledb.4.0;Data Source=Access文
2013-05-23 15:45:00 731
转载 AppSettings和ConnectionStrings的区别
AppSettings是ASP.NET1.1时期用的,在.NET Framework 2.0中,新增了ConnectionStrings. 1. providerName="System.Data.SqlClient" /> 或是 providerName="System.Data.SqlClient" /> 在 里,在页面还可
2013-05-23 13:50:24 563
原创 [asp.net] 验证控件
.aspx ,aspx.cspublic void ValidateName(Object sender, ServerValidateEventArgs args) { SqlConnection myConn = new SqlConnection("Data Source=(local);Initial Catalog=Csharp;Integrated Security
2013-05-23 10:05:28 2240
转载 比较功能特性: FCKeditor, xhEditor, RJ TextEd
http://fckeditor.softonic.cn/compare/xhEditor,rj-texted-portablehttp://blog.csdn.net/qq380107165/article/details/8782763最近开始准备新程序的一部分底层的升级。其中就有编辑器。原来使用的是fckeditor,这个编辑器可以说是很标准的一个编辑器,大部分Web
2013-05-22 18:00:09 815
转载 ubuntu下chrome中Bilibili中文乱码
看Acfun、Bilibili中文乱码,只显示方框,并数秒内崩溃。 进入chrome://plugins/,点击右上角的“详细信息”,Flash展开,关闭版本11.3.31.230的Shockwave Flash,启用版本11.2 r202的Shockwave Flash,即可。
2013-04-22 18:22:14 5978
原创 lamp搭建基础
linux下搭建pythonapache环境http://www.vimer.cn/2010/05/linux%E4%B8%8B%E6%90%AD%E5%BB%BApythonapache%E7%8E%AF%E5%A2%83.htmlUbuntu 上安裝整個 Python + Apache + MySQL 的過程http://blog.xuite.net/autosun/stu
2013-03-30 02:16:54 553
原创 日期选择datepicker
步驟一:加上 jQuery 套件到 head 跟 /head 之間或者是-->步驟二:加上 ui.datepicker.css 跟 ui.datepicker.js jQuery UI Date Picker CSS and the jQuery UI Date Picker Javascript@import url(ui.datepicker.css
2013-02-28 13:07:37 490
原创 Android google map apiv2的最新申请密钥方式
1.生SHA1密钥(旧版是MD5)eclipse->help->install new software->add(name: keytool;location:http://www.keytool.sourceforge.net/update)->okeclipse重启;cmd中执行命令:keytool -list -v -keystore debug.keystore,然后需要密码
2013-01-06 18:58:25 1204
转载 Python3,已经安装了Beautifulsoup 4,却还是出错
python脚本,其中用到Beautifulsoup:from BeautifulSoup import BeautifulSoup,Tag,CData;为了支持Python 3,所以去主页:http://www.crummy.com/software/BeautifulSoup/下载了beautifulsoup4-4.1.3.tar.gz,并安装了
2013-01-02 18:56:49 2891
转载 反编译Apk得到Java源代码
工具下载:需用到dex2jar和JD-GUI这2个工具dex2jar下载地址:http://laichao.googlecode.com/files/dex2jar-0.0.7-SNAPSHOT.zipJD-GUI下载地址: windows版JD-GUI:http://laichao.googlecode.com/files/jdgui.zip Linux版JD-GUI:h
2013-01-01 00:08:31 450
转载 Windows下 Python 安装包的配置
1、下载安装 Pythonpython-2.7.2.msi http://www.python.org/download/如下载 Python 2.7.2,安装目录为 C:\Python272、添加环境变量path = C:\Python27此步骤可实现在命令行下,不用进入 Python 目录即可执行 python.exe3、下载 setuptools
2012-12-31 15:02:54 424
原创 asp 网页部分出现中文乱码 response.write
先了解一下基础的代码:UTF-8简体中文繁体中文美国/加拿大英语日文韩文俄文Codepage指定了IIS按什么编码读取传递过来的串串(表单提交,地址栏传递等)。出乱码的原因也就是网站要整合的时候模块编码不一样引起的。摘自:http://www.power-in-china.com/ld_News-325.htmlASP乱码,直接写HT
2012-12-14 17:08:47 2602
原创 [Error Fix] The transaction log for database 'DATABASENAME' is full
error info:Microsoft OLE DB Provider for ODBC Drivers ���~ '80040e14'[Microsoft][ODBC SQL Server Driver][SQL Server]The transaction log for database 'haiyangproducts' is full. To find out wh
2012-12-13 11:27:47 1043
原创 CDO.Message使用详细介绍
cdo.message使用实例,固定的代码就不做解释了,这里介绍我们需要改动的:Const cdoSendUsingMethod="http://schemas.microsoft.com/cdo/configuration/sendusing" Const cdoSendUsingPort=2 Const cdoSMTPServer="http://schemas.micro
2012-12-07 12:05:34 23741 2
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人