摘要:
源文章:http://www.codeproject.com/Articles/7859/Building-COM-Objects-in-C如果大家需要的话 我准备翻译为中文,看大家的反馈情况。如果不需要就仅供我参考啦。The topics covered in this article are:Creating a simple COM object in C# (use the COM Interop property).Accessing the COM from a VC++ client. (I have tested it with VC++6.0 and VC++ .NET). 阅读全文
摘要:
I am running on windows xp sp3 and when I converted my 2010 project and tried to compile I get the following error:Error1The "GenerateResource" task failed unexpectedly.System.DllNotFoundException: Unable to load DLL 'FileTracker.dll': A dynamic link library (DLL) initialization ro 阅读全文
摘要:
最近项目中用到cookie,登录的时候用js写如cookie,如果设置了有效期,那么这个cookie可以用ckeadm工具查看到,而且也可以用Request.Cookie[Key]的方式获取到数据。然后如果没有设置有效期的话,js写入的cookie,无法通过Request.Cookie[Key]获取,也无法通过这个工具查看到。function addAuthenticationCookie(name, value, path) { //Authentication using minutes as unit var name = escape(name); var value = escape 阅读全文