把图片转换成二进制--把二进制转换成图片 private void button1_Click(object sender, EventArgs e) { string path = this.textBox1.Text; by...
分类:
数据库 时间:
2015-01-06 09:54:26
阅读次数:
193
private void companyToolStripMenuItem1_Click(object sender, EventArgs e){ Master.CompanyMasterForm cmpnymasterform = null; bool isFormOpen = IsA...
分类:
其他好文 时间:
2015-01-06 09:44:28
阅读次数:
158
1. Connet MODx by SSH:Go to the MODx cloud;Find you current user and right click selet Edit Cloud;Find your SSH connect information:2. Upload an HTML5...
分类:
Web程序 时间:
2015-01-05 23:26:12
阅读次数:
249
1.事件源任何元素都可以作为事件源2.事件鼠标类 click //单击 dbclick //双击 contextmenu //右击菜单 mouseover //移入 mouseout //移出 mousedown //按下 mouseup //弹起 mousemove //移动 s...
分类:
编程语言 时间:
2015-01-05 20:17:27
阅读次数:
209
$('div').on('click', 'button', function(e){console.log($(e.target).is(':button'))}); $('After').insertAfter('button');这样貌似更elegant~
分类:
Web程序 时间:
2015-01-05 14:27:39
阅读次数:
188
//复制: private void button1_Click(object sender, System.EventArgs e) { if(textBox1.SelectedText != "") Clipboard.SetDataObject(textBox1.SelectedTe...
Given an input string, reverse the string word by word. For example,Given s = "the sky is blue",return "blue is sky the".click to show clarification.C...
分类:
其他好文 时间:
2015-01-05 08:15:08
阅读次数:
124
用过的或是常用的属性有:1、event.type属性可以获取到事件的类型。 $("element").click(function(event) { console.log(event.type); //获取事件类型 click; return false; //如果是a link阻止...
分类:
Web程序 时间:
2015-01-05 06:58:31
阅读次数:
297
留着备用private void button1_Click(object sender, EventArgs e) { SqlConnection conn = new SqlConnection(); conn.ConnectionStr...
分类:
数据库 时间:
2015-01-04 22:48:33
阅读次数:
312