使用NOD32引起ASP.NET Development Server的IE页面无法显示(错误的端口号)

摘要: 引用: http://www.cnblogs.com/aprillee/archive/2008/12/29/1364463.html电脑上安装了Microsoft Visual Studio 2005/2008,使用ASP.NET Development server建立WEB项目。当调试时IE出现无法显示页面。我发现原因有两个。错误页面:其一:安装vs2008 sp1 后系统首先以IPv6方式... 阅读全文
posted @ 2009-07-20 11:20 NullReferenceException 阅读(321) 评论(0) 推荐(0)

操作无法完成.键入的打印机名不正确,或者指定的打印机没有连接到服务器上.有关详细信息,请单帮助

摘要: 上午同时说,网络打印机打印不了,于是首先看一下打印服务器IP是不是给换了,结果没换。 接着尝试重新添加一下网络打印机,结果问题来了,连不上,提示: 操作无法完成.键入的打印机名不正确,或者指定的打印机没有连接到服务器上.有关详细信息,请单帮助 然后网上查了查资料,说法倒有N多,说什么看看打印机有没有共享,修改共享名,重新安装打印机驱动,开始Guest帐号,关闭防火墙。。。 然而发现,如果不通过IP... 阅读全文
posted @ 2009-04-17 10:13 NullReferenceException 阅读(10374) 评论(4) 推荐(0)

Linq To SQL LEFT OUTER JOIN (Left Join)

摘要: SQL:SELECT [t0].[ProductName], [t1].[TotalPrice] AS [TotalPrice]FROM [Product] AS [t0]LEFT OUTER JOIN [OrderDetail] AS [t1] ON [t0].[ProductID] = [t1].[ProductID] Linq Query:from p in Productsjoin od ... 阅读全文
posted @ 2009-04-07 22:49 NullReferenceException 阅读(1369) 评论(2) 推荐(0)

SQL Query to Linq (Group By and Sum)

摘要: SQL: Select C.sName as CustomerName, S.sName as Salesperson, Sum(O.nQty) as Qty, Sum(O.mAmount) as Amount From tOrders O Inner Join tCustomer C On C.CustomerID = O.CustomerID ... 阅读全文
posted @ 2009-04-01 13:09 NullReferenceException 阅读(2039) 评论(0) 推荐(1)

如何在WPF中调用Winform控件

摘要: Crossbow, OMG, WTF? Well, Crossbow is the codename for the interoperability technology between Windows Forms and Windows Presentation Foundation. Crossbow enables you to host Windows Forms control... 阅读全文
posted @ 2009-03-31 10:09 NullReferenceException 阅读(1969) 评论(1) 推荐(0)

Creating a timer

摘要: Window1.xaml ... 阅读全文
posted @ 2009-03-18 20:26 NullReferenceException 阅读(240) 评论(0) 推荐(0)

web.config详解

摘要: 一、认识Web.config文件 Web.config 文件是一个XML文本文件,它用来储存 ASP.NET Web 应用程序的配置信息(如最常用的设置ASP.NET Web 应用程序的身份验证方式),它可以出现在应用程序的每一个目录中。当你通过.NET新建一个Web应用程序后,默认情况下会在根目录自动创建一个默认的 Web.config文件,包括默认的配置设置,所有的子目录都继承它的配置设置。如... 阅读全文
posted @ 2008-12-10 14:59 NullReferenceException 阅读(245) 评论(0) 推荐(0)

Asp.net Request.ServerVariables 各参数说明集合

摘要: Request.ServerVariables("Url") 返回服务器地址 Request.ServerVariables("Path_Info") 客户端提供的路径信息 Request.ServerVariables("Appl_Physical_Path") 与应用程序元数据库路径相应的物理路径 Request.ServerVariables("Path_Translated")... 阅读全文
posted @ 2008-12-10 14:54 NullReferenceException 阅读(209) 评论(0) 推荐(0)

JavaScript为事件处理器传递参数

摘要: 方法一: var newopen = function(id,level) { return function() { opentree(id,level);//该函数为外部定义的一个执行函数; } } x.attachEvent("onclick",newopen(id,parseInt(level)+1)); y.attachEvent("onclick",newopen(... 阅读全文
posted @ 2008-12-01 14:57 NullReferenceException 阅读(234) 评论(0) 推荐(0)

10 Tips to Improve your LINQ to SQL Application Performance

摘要: Hey there, back again. In my first post about LINQ I tried to provide a brief(okay, bit detailed) introduction for those who want to get involved with LINQ to SQL. In that post I promised to write abo... 阅读全文
posted @ 2008-11-11 13:06 NullReferenceException 阅读(450) 评论(0) 推荐(0)