摘要:
已经无数次见到有人提出这个问题了。。。。。 第一种。。。。。 用.net控件TreeView而展开时不刷新的变通方法主要有以下步骤: 1。在Page_Load中为你的TreeView添加以下属性,这句话为TreeView添加Click时的回发事件。 TreeView1.Attributes["OnClick"] = @"javascript: window.setTimeou... 阅读全文
摘要:
http://faq.lvjiyong.com/category/dotnet/3/其他资源除了上面的概述中介绍的内容外,还有许多其他内容可供选择。以下主题更详细地讨论了代码访问安全性: Introduction to Code Access Security(英文) Code Access Security(英文) Security Namespaces in Visual Studio(英文)... 阅读全文
摘要:
Visual Basic .NET 和 Visual C# .NET 程序员需要解决的安全问题 Robin Reynolds-HaertleVisual Studio TeamMicrosoft Corporation 2002 年 1 月 摘要:本文着重讨论了 Visual Basic .NET 和 Visual C# .NET 开发人员在开始使用 .NET 框架时需要解决的主要安全问题。此概述... 阅读全文
摘要:
using System;using System.Security ;using System.Security.Cryptography ;using System.Diagnostics ;using System.Web ;using System.Text ;namespace Bigeagle.Util{ /// /// 一个加密类 /// Author: Big... 阅读全文
摘要:
protected void ConvertToHtml(string docPath,string htmlPath) { Word.Application app=new Word.Application(); app.Visible=false; Object o=Missing.Value; ... 阅读全文
摘要:
Asp.net生成静态html文件 内容 一 表结构: CREATE TABLE [dbo].[HtmlNews] ( [Id] [int] IDENTITY (1, 1) NOT NULL , [subject] [nvarchar] (50) COLLATE Chinese_PRC_CI_AS NOT NULL , [filename] [nvarchar] (50) COLLATE Chin... 阅读全文