上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 18 下一页
摘要: 域名解析注意 1、首先做A记录解析: 主机名处:输入 mail IP地址处:输入IP地址 2、做MX记录: 主机名处: 大都保持空输入,什么也不用输入 TTL:默认就可以了,不需要改动 优先级:一般默认是10,特殊的需要联系邮箱提供商。万网息壤邮箱全部是10 目标主机:在框中输入你刚才做的... 阅读全文
posted @ 2015-03-27 13:13 深南大道 阅读(610) 评论(0) 推荐(0)
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading;namespace ConsoleSample{ class Program ... 阅读全文
posted @ 2015-03-24 14:52 深南大道 阅读(878) 评论(0) 推荐(0)
摘要: protected void Button1_Click(object sender, EventArgs e) { MemoryStream stream = new MemoryStream(); StreamReader reader = new ... 阅读全文
posted @ 2015-03-22 12:27 深南大道 阅读(389) 评论(0) 推荐(0)
摘要: /////////////////////////////////////////////////////////////////////////////////////////// Super Tables... 阅读全文
posted @ 2015-03-17 11:54 深南大道 阅读(1131) 评论(0) 推荐(0)
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Threading; using System.Web.UI.WebControls; public partial class muti_thread : S... 阅读全文
posted @ 2015-03-10 17:04 深南大道 阅读(1359) 评论(0) 推荐(0)
摘要: --修改字段类型:--alter table 表名 alter column 待修改字段名 待修改字段类型alter table users alter column userid varchar(10)--多个字段建立唯一索引create unique index [索引名] on 表名(字段... 阅读全文
posted @ 2015-03-06 16:11 深南大道 阅读(2434) 评论(0) 推荐(0)
摘要: --配置SQLSERVER数据库的DBLINKexec sp_addlinkedserver @server='WAS_SMS',@srvproduct='',@provider='SQLOLEDB',@datasrc='10.131.20.100'exec sp_addlinkedsrv... 阅读全文
posted @ 2015-03-06 11:13 深南大道 阅读(1835) 评论(0) 推荐(0)
摘要: --“管理”-“数据库邮件”-右键“配置数据库右键”Exec msdb.dbo.sp_send_dbmail @profile_name='EMAIL2015',@recipients='32134324324@qq.com',@subject='test1111111',@body='test... 阅读全文
posted @ 2015-03-05 18:19 深南大道 阅读(120) 评论(0) 推荐(0)
摘要: C#无限级分类递归显示示例 using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.T... 阅读全文
posted @ 2015-03-05 13:06 深南大道 阅读(474) 评论(0) 推荐(0)
摘要: Jquery异步查询加载效果 姓名语文数学英语 张三 查询 查询 查询 using System;using System.W... 阅读全文
posted @ 2015-03-05 10:58 深南大道 阅读(279) 评论(0) 推荐(0)
摘要: /*C#对象XML序列化(一):序列化方法和常用特性.Net Framework提供了对应的System.Xml.Seriazliation.XmlSerializer负责把对象序列化到XML,和从XML中反序列化为对象。Serializer的使用比较直观,需要多注意的是XML序列化相关的Att... 阅读全文
posted @ 2015-02-13 10:14 深南大道 阅读(680) 评论(0) 推荐(0)
摘要: --5.读取XML--下面为多种方法从XML中读取EMAILDECLARE @x XMLSELECT @x = ' dongsheng@xxyy.com 678945546 36575 '-- 方法1SELECT @x.value('dat... 阅读全文
posted @ 2015-02-10 17:45 深南大道 阅读(328) 评论(0) 推荐(0)
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; using System.Data; using System.Xml; using System.Xml.Serialization; /// /// Xml序列化与反序列化 /// ... 阅读全文
posted @ 2015-02-06 16:02 深南大道 阅读(389) 评论(0) 推荐(0)
摘要: C语言 25 50 数据库 100 数据结构 100 25 female 66.5 protected void Button1_Click(object se... 阅读全文
posted @ 2015-02-06 15:39 深南大道 阅读(566) 评论(0) 推荐(0)
摘要: EasyUI加载效果 using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.... 阅读全文
posted @ 2015-02-05 17:01 深南大道 阅读(375) 评论(0) 推荐(0)
摘要: ---1.先备份数据库(含日志文件) use myhis go backup database myhis to disk='d:\myhis_rzbak' go ---2.设为简单恢复模式 use [master] go alter database myhis set recovery simple with no_wait go alter database myhis set re... 阅读全文
posted @ 2015-02-05 14:14 深南大道 阅读(426) 评论(0) 推荐(0)
摘要: jquery div随滚动条滚动效果 阅读全文
posted @ 2015-02-03 15:07 深南大道 阅读(492) 评论(0) 推荐(0)
摘要: Jquery+Ajax分页测试 编号 姓名 ... 阅读全文
posted @ 2015-01-21 18:03 深南大道 阅读(178) 评论(0) 推荐(0)
摘要: easyUI默认展开树的时候,点击节点前边的黑色小三角 ,这样操作存在不人性化的地方,在实际使用中由于老旧电脑的存在和大龄使用者的眼花经常点不准;因此要实现点击节点名称展开的方式,其实就是在展开事件上加一个展开该节点的方法。 在onSelect事件中添加 $(this).tree('exp... 阅读全文
posted @ 2015-01-17 11:41 深南大道 阅读(1149) 评论(0) 推荐(0)
摘要: 在Eclipse中,从Window -> preferences -> Java -> Editor -> Content assist -> Auto-Activation下,我们可以在"."号后面加入我们需要自动提示的首字幕,比如"abc",可以把26个字母的大小写全部加上(.abcdefg... 阅读全文
posted @ 2015-01-16 14:06 深南大道 阅读(119) 评论(0) 推荐(0)
摘要: ①打开C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Config目录,找到machine.config文件新增 <add name="SQLite Data Provider" invariant="System.Data.SQLite" descr 阅读全文
posted @ 2014-12-25 15:08 深南大道 阅读(354) 评论(0) 推荐(0)
摘要: 做一个随屏幕滚动的导航条时,发现一个问题: 火狐、谷歌、ie9正常,ie8、7、6页面滚动时,导航条没有反应。 代码如下: $(document).bind("scroll",function(){ //…… }); 后来怀疑绑定对象出了问题,不应该绑定document... 阅读全文
posted @ 2014-12-24 10:12 深南大道 阅读(364) 评论(0) 推荐(0)
摘要: HttpHelper http = new HttpHelper(); HttpItem item = new HttpItem() { URL = "http://www.sufeinet.com... 阅读全文
posted @ 2014-12-09 09:23 深南大道 阅读(748) 评论(0) 推荐(0)
摘要: 选择收件人 收件人: 选择好友 var itemList = [{ "id": 1,... 阅读全文
posted @ 2014-12-01 17:26 深南大道 阅读(457) 评论(0) 推荐(0)
摘要: asp.net多语言支持例子 using System;using System.Collections.Generic;using Sy... 阅读全文
posted @ 2014-11-26 16:50 深南大道 阅读(173) 评论(0) 推荐(0)
摘要: 1.以“管理员身份运行”SDK Manager。 2.Android SDK Manager"=>"Tools"=>"Options...",勾选"Others"中的"Force https://...sources to be fetched using http://..."选项。如下图... 阅读全文
posted @ 2014-11-24 15:01 深南大道 阅读(307) 评论(0) 推荐(0)
摘要: 一、常用快捷键: Ctrl+F11 运行 Ctrl+Shift+/ 在代码窗口中加入/* ... */注释 Ctrl+Shift+\ 消除/* ... */注释 Ctrl+Shift+O 将缺少的import语句加入Ctrl+1 快速修复(最经典的快捷键,就不用多说了) Ctrl+L 定... 阅读全文
posted @ 2014-11-20 17:34 深南大道 阅读(261) 评论(0) 推荐(0)
摘要: 查看java版本 cmd在DOS命令行窗口输入“java -version” 下面开始配置环境变量,右击【我的电脑】---【属性】-----【高级】---【环境变量】,如图: ①配置JAVA的环境变量 选择【新建系统变量】--弹出“新建系统变量”对话框,在“变量名”文本框输入“JAVA_HOME... 阅读全文
posted @ 2014-11-13 17:22 深南大道 阅读(176) 评论(0) 推荐(0)
摘要: /*** 游标的使用 讲了这个多游标的优点,现在我们就亲自来揭开游标的神秘的面纱。 使用游标的顺序: 声名游标、打开游标、读取数据、关闭游标、删除游标。 1.3.1声明游标 最简单游标声明:DECLARE CURSOR FOR; 其中select语句可以是简单查询,也可以是复杂的接连查询和嵌套查询 例子:[已表2 AddSalary为例子] Declare mycursor cursor fo... 阅读全文
posted @ 2014-11-12 14:50 深南大道 阅读(2369) 评论(0) 推荐(0)
摘要: use master --注意,此存储过程要建在master数据库中goif exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[p_compdb]') and OBJECTPROPERTY(id, N'IsPr... 阅读全文
posted @ 2014-11-04 12:44 深南大道 阅读(436) 评论(2) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 18 下一页