- 浏览: 122027 次
- 性别:
- 来自: 深圳
最新评论
-
xuzhenAAfufang:
...
对任何一天是星期几算法的实现 -
xuzhenAAfufang:
a=(d+2*m+3*(m+1)/5+y+y/4-y/100+ ...
对任何一天是星期几算法的实现
文章列表
Asp.net动态生成html页面
Asp.net动态生成html页面
适用于:Microsoft ASP.NET
摘要:asp.net动态生成html页面,适用
简介
此功能适用于后台数据库功能不强的web站点,即大部分文本不是存放在数据库的记录中,而是放在html文件或者xml文件中,仅仅把索引放到数据库中,如文章标题、类别、查询关键字等。这样适合于后台没有诸如MS Sql Server这样的数据库支持的Web站点。
适用于新闻发布系统,比如sina、163等都是采用动态生成html页面的。
适用于需动态定制页面的程序。比如论坛、聊天室等。可以加载定制好的html ...
- 2007-09-13 17:10
- 浏览 1185
- 评论(0)
转载:http://blog.csdn.net/aspgreener/archive/2007/09/05/1772920.aspx
在开发中,我们经常会遇到使用Frame来工作,而且有时是为了跟其他网站集成,应用到多域的情况下,而Iframe是不能保存Session的。因此,网上可以找到很多相关的文章,如果网站可以采用设置Web.Config中的配置:<sessionstate></sessionstate> mode="StateServer"
stateConnectionString="tcpip=127.0.0.1:42424&qu ...
- 2007-09-12 14:29
- 浏览 5823
- 评论(0)
ASP.NET AJAX Tips and Tricks
By default ASP.NET AJAX will load and render your controls even if they do not need to be updated.
Example:
In this case the Panel marked as "Slow loading area" will be updated by default even on DropDownList1 selected index changed.
What can we do to pr ...
- 2007-09-11 14:21
- 浏览 1087
- 评论(0)
由Windows生成的文件夹缩略图(如各种图片),文件名为thumbs.db,缺省情况下每个文件夹都存在一个。
XP系统的缩略图原理而已
一、缩略图原理
这是什么原理呢?因为现在JPEG的文件采用了压缩的方式,其过程比较复杂。为了能让 ...
- 2007-09-11 14:08
- 浏览 2801
- 评论(0)
vice versa :反之亦然
look at :着眼,考虑
brush up on 温习,复习
i.e. 也就是
etc 等等
to schedule 按预订时间
a fraction of a second 一秒钟的若干份之一,一转眼的功夫
Of note 著名的
behind the curtain 幕后
For now 暂时
ward off 避开
poke around 闲逛
- 2007-09-11 11:22
- 浏览 1115
- 评论(0)
Using SingleTagSectionHandler Instead Of appSettings
<script type="text/javascript"></script><script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript">
</script>
While working with any kind of configuration fil ...
- 2007-09-11 09:31
- 浏览 1170
- 评论(0)
Make your ASP.NET application extendable
by Mads Kristensen 26. July 2007
People have asked me how we build the extension model into BlogEngine.NET. There’s nothing to it - really, there isn’t.
You need one small class and 14 lines of code in the global.asax. That is all you need to make your ASP.N ...
- 2007-09-11 09:20
- 浏览 1223
- 评论(0)
转载:http://blog.madskristensen.dk/post/Cookies-and-Unicode-characters.aspx
Cookies and Unicode characters
by Mads Kristensen 9. September 2007
I’ve been having some issues with storing Unicode characters in cookies today. Whenever a cookie is set and the value filled with Unicode characters, the sam ...
- 2007-09-11 09:08
- 浏览 1024
- 评论(0)
<script language="javascript" type="text/javascript">
<!--
function ClientValidate(sender, args)
{
- 2007-09-10 22:13
- 浏览 3803
- 评论(0)
转载:http://www.cnblogs.com/artech/archive/2007/09/09/887528.html
前几天有一个朋友在MSN上问我“ASP.NET 从最初的接收到Http request到最终生成Response的整个流程到底是怎样的?”我觉得这个问题涉及到IIS和ASP.NETASP.NET Runtime的处理模型的问题, ...
- 2007-09-09 22:58
- 浏览 1044
- 评论(0)
ASP.NET Internals – IIS and the Process Model
Published: 03 May 2007
By: Simone Busoli
ASP.NET is a beautiful framework for building web applications and components, but getting to know every detail about it may seem prohibitive for most people due to its extent. Although there is a lot of documentat ...
- 2007-09-09 22:50
- 浏览 1587
- 评论(0)
转载地址:wayfarer.cnblogs.com/articles/241024.html
AOP技术基础
1、引言
2、AOP技术基础
3、Java平台AOP技术研究
4、.Net平台AOP技术研究
2.1 AOP技术起源
AOP技术的诞生并不算晚,早在1990年开始,来自Xerox Palo Alto Research Lab(即PARC)的研究人员就对面向对象思想的局限性进行了分析。他们研究出了一种新的编程思想,借助这一思想或许可以通过减少代码重复模块从而帮助开发人员提高工作效率。随着研究的逐渐深入,AOP也逐渐发展成一套完整的程序设计思想,各种应用AOP的技术也应运而生。
...
- 2007-09-08 23:29
- 浏览 921
- 评论(0)
摘要:
大部分ASP.NET应用程序都包含很多个配置信息,比较常见的有连接字符串配置ConnectionString;当我们需要用到Login控件自动发送Email时,我们就要配置Email服务器节点;还有很多如Page节点可以引入程序集和命名空间等等。根据我的经验很多网站的初始化信息(默认设置)很多都会保存在数据库中,也有很多保存在配置文件中,他们各有各的优点。我们可以在web.config中定义我们自己的节点,然后再读取或更新自定义配置文件,当然我们也可以自定义一个配置文件并将其解析读取。本文主要讲的是利用ASP.NET给我提供的一些APIs在Web.config中自定义配置节点。
...
- 2007-09-08 23:12
- 浏览 3681
- 评论(0)
如何正确的设置div的隐藏
- 博客分类:
- asp.net技巧
如果设置div 的visible:false的话,这个div还是可以看见的,但是如果设置div的style=“visibility:hidden”话,能隐藏,但是在页面上会留有div的占位符,只有设置div的display:none才能真正的隐藏div
- 2007-09-08 17:20
- 浏览 5551
- 评论(0)
What is the DOM?
With JavaScript you can restructure an entire HTML document. You can add, remove, change, or reorder items on a page.
To change anything on a page, JavaScript needs access to all elements in the HTML document. This access, along with methods and properties to add, move, change, or r ...
- 2007-09-08 16:42
- 浏览 915
- 评论(0)