03 2015 档案
摘要:// Create the in-memory bitmap where you will draw the image. // This bitmap is 300 pixels wide and 50 pixels high. Bitmap image = new Bitmap(300, 50); // get the grap...
阅读全文
摘要:$(function () { setInterval("startRequest()", 3000); }); function startRequest() { $("#date").text((new ...
阅读全文
摘要:域名解析注意 1、首先做A记录解析: 主机名处:输入 mail IP地址处:输入IP地址 2、做MX记录: 主机名处: 大都保持空输入,什么也不用输入 TTL:默认就可以了,不需要改动 优先级:一般默认是10,特殊的需要联系邮箱提供商。万网息壤邮箱全部是10 目标主机:在框中输入你刚才做的...
阅读全文
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading;namespace ConsoleSample{ class Program ...
阅读全文
摘要:protected void Button1_Click(object sender, EventArgs e) { MemoryStream stream = new MemoryStream(); StreamReader reader = new ...
阅读全文
摘要://///////////////////////////////////////////////////////////////////////////////////////// Super Tables...
阅读全文
摘要: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...
阅读全文
摘要:--修改字段类型:--alter table 表名 alter column 待修改字段名 待修改字段类型alter table users alter column userid varchar(10)--多个字段建立唯一索引create unique index [索引名] on 表名(字段...
阅读全文
摘要:--配置SQLSERVER数据库的DBLINKexec sp_addlinkedserver @server='WAS_SMS',@srvproduct='',@provider='SQLOLEDB',@datasrc='10.131.20.100'exec sp_addlinkedsrv...
阅读全文
摘要:--“管理”-“数据库邮件”-右键“配置数据库右键”Exec msdb.dbo.sp_send_dbmail @profile_name='EMAIL2015',@recipients='32134324324@qq.com',@subject='test1111111',@body='test...
阅读全文
摘要:C#无限级分类递归显示示例 using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.T...
阅读全文
摘要:Jquery异步查询加载效果 姓名语文数学英语 张三 查询 查询 查询 using System;using System.W...
阅读全文