摘要: DNN Module开发中遇到的问题:1.引用JavaScript库文件如:JQuery和CSS文件防止前台页面堆积大量的代码,可以在后台定义方法加载这些文件代码如下:View Code 1 private void AddJs() 2 { 3 //javascript的地址 4 Url = Request.Url.ToString().ToLower(); 5 Url = Url.Substring(0, Url.IndexOf("default.aspx")); 6 7 System.Web.UI.Control objAllDnnCSS = this.Page.Fin 阅读全文
posted @ 2011-03-29 16:48 Barret 阅读(358) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Web;using System.Data;using System.Data.Sql;using System.Configuration;using System.Data.SqlClient;using System.Text;using System.Security.Cryptography;/// <summary>/// 弹出信息/// </summary>/// namespace Common{ public class Message 阅读全文
posted @ 2011-03-29 16:13 Barret 阅读(401) 评论(0) 推荐(1) 编辑