随笔 - 441
文章 - 4
评论 - 84
阅读 -
109万
08 2007 档案
.net2.0线程使用参数
摘要:using System; using System.Threading; namespace ParameterizedThreadStartTest { class Program { static void Main(string[] args) { ParameterizedThreadStart myParamet...
阅读全文
asp.net 定时器的使用
摘要:在global.asax 中使用. Timer timer; Timer timerUrl; void Application_Start(object sender, EventArgs e) { TimerCallback callBack2 = new TimerCallback(Test2); timerUrl = new Ti...
阅读全文
跨数据库调用存储过程权限问题
摘要:今天碰到一个问题.有两个数据库A,B我希望在A库的存储过程调用B库的存储过程,在查询分析器下执行没有问题,但是web调用却不行.原因是 在A库使用network service 用户执行的,但是在B库确没有这个用户,在B库加上这个用户,程序正常执行.
阅读全文