<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="rss.xsl" media="screen"?>
<rss version="2.0">
  <channel>
    <title>MONO中文 - ASP.NET</title>
    <link>http://www.sinoprise.com/showforum-9.aspx</link>
    <description>Latest 20 threads</description>
    <copyright>Copyright (c) MONO中文</copyright>
    <generator>Discuz!NT</generator>
    <pubDate>Thu, 20 Nov 2008 08:11:38 GMT</pubDate>
    <ttl>60</ttl>
    <item>
      <title>Mono ASP.NET Webservice</title>
      <description><![CDATA[Hi List,
 
I am currently investigating the best approach for deployingan persistent ASP.NET Webservice (.asmx) under Linux/Mono. This is a SOAPASP.NET Webservice that must run over SSL.
 
I have ]]></description>
      <link>http://www.sinoprise.com/showtopic-384.aspx</link>
      <category>ASP.NET</category>
      <author>enjoyo</author>
      <pubDate>Wed, 15 Oct 2008 09:56:08 GMT</pubDate>
    </item>
    <item>
      <title>在ASP.NET中使用unsafe选项</title>
      <description><![CDATA[找到工程的web.config文件,在configuration节中加入:

&amp;lt;system.codedom&amp;gt;
&amp;lt;compilers&amp;gt;
&amp;lt;compiler
language=&amp;quot;c#;cs;csharp&amp;quot; extension=&amp;quot;.cs&amp;quot;
compilerOptions=&amp;quot;/unsafe......]]></description>
      <link>http://www.sinoprise.com/showtopic-351.aspx</link>
      <category>ASP.NET</category>
      <author>enjoyo</author>
      <pubDate>Fri, 12 Sep 2008 11:56:01 GMT</pubDate>
    </item>
    <item>
      <title>《博客园精华集》ASP.NET分册第2论筛选结果文章列表</title>
      <description><![CDATA[原文： http://www.cnblogs.com/dflying/archive/2008/06/13/1219896.html

为什么foreach(HttpCookie cookie in Request.Cookies)会出错 作者：dudu解读System.Web.UI.Page中关键方法ProcessRequestMain() 作者：dudu在Asp.net页面中实现数据饼图 ]]></description>
      <link>http://www.sinoprise.com/showtopic-347.aspx</link>
      <category>ASP.NET</category>
      <author>enjoyo</author>
      <pubDate>Wed, 10 Sep 2008 09:35:33 GMT</pubDate>
    </item>
    <item>
      <title>asp.net2.0如何加密数据库联接字符串</title>
      <description><![CDATA[asp.net2.0如何加密数据库联接字符串
在asp.net2.0中,发布网站时,加密web.config,这样可以有效保证数据库用户和密码安全,其步骤如下:
1.添加密钥
执行:c:\windows\microsoft.net\framework\v2.0.50727\aspnet_regiis -pc &amp;quot;hnlaw&amp;quot; -exp
其中&amp;quot;hnlaw&amp;quot]]></description>
      <link>http://www.sinoprise.com/showtopic-266.aspx</link>
      <category>ASP.NET</category>
      <author>lilcy</author>
      <pubDate>Wed, 18 Jun 2008 11:30:38 GMT</pubDate>
    </item>
    <item>
      <title>如何在C# DateTime类型和JavaScript的Date之间进行转化</title>
      <description><![CDATA[在Javascript中是以毫秒为单位对时间进行记录的，并且起始时间是1970-1-1 0：0：0，这个是时间UTC（格林威治时间的0点，在中国，应该是1970-1-1 8：0：0 ，因为中国是东八区，在格林威治时间的0点上加上8个小时）。而C#的时间是以Ticks为单位进行记录的，直译就是CPU的时间“滴答”，是一个比毫秒还小的单位。在这两者之间进行转化，需要注意起始时间的转换和时区的转换，一下]]></description>
      <link>http://www.sinoprise.com/showtopic-242.aspx</link>
      <category>ASP.NET</category>
      <author>enjoyo</author>
      <pubDate>Sun, 08 Jun 2008 12:00:38 GMT</pubDate>
    </item>
    <item>
      <title>验证MS关于DateTime的JSON表示</title>
      <description><![CDATA[JSON有一个非常大的遗憾，就是对于DateTime类型没有进行相关的标准表示，于是MS为了解决此类问题，在Asp.net Ajax的实现中用\Date(tickets)\来表示日期时间，为了和表示日期时间的和类似于表示日期时间的数据取个开来，在传递的JSON字符串中就是这样表示的，如：

var jsonString='{&amp;quot;name&amp;quot;:&amp;quot;James&amp;quot;,]]></description>
      <link>http://www.sinoprise.com/showtopic-241.aspx</link>
      <category>ASP.NET</category>
      <author>enjoyo</author>
      <pubDate>Sat, 07 Jun 2008 22:07:38 GMT</pubDate>
    </item>
    <item>
      <title>JSON 还是 XML?</title>
      <description><![CDATA[数据要传输，就需要把数据表示出来。用什么格式来表示数据，这是个问题。


JSON和XML都是非常成熟的结构化数据表示方法。大多有经验开发者都不愿意自己重新定义数据表示的格式，因为那样的确费力不讨好，毕竟很多人都看到了自己和天才之间的差距。但在选择数据的表示方法时，却是各执一词，为选择JSON还是XML争论不休。


先简要介绍一下这两种数据表达方法：


JSON：JSON(J]]></description>
      <link>http://www.sinoprise.com/showtopic-200.aspx</link>
      <category>ASP.NET</category>
      <author>enjoyo</author>
      <pubDate>Thu, 15 May 2008 18:15:12 GMT</pubDate>
    </item>
    <item>
      <title>如何获取上一页面的地址</title>
      <description><![CDATA[以前，在ASP里可用Request.ServerVariables(&amp;quot;HTTP_REFERER&amp;quot;)得到上一页面的地址，在C#里更简单,可以用Request.UrlReferrer得到上一页的地址]]></description>
      <link>http://www.sinoprise.com/showtopic-162.aspx</link>
      <category>ASP.NET</category>
      <author>enjoyo</author>
      <pubDate>Fri, 25 Apr 2008 17:23:50 GMT</pubDate>
    </item>
    <item>
      <title>Render、RenderChildren和RenderControl</title>
      <description><![CDATA[(1) protected virtual void Render(HtmlTextWriter writer); 

　　该方法用于将服务器控件内容发送到提供的HtmlTextWriter对象，此对象编写将在客户端呈现的内容。在开发服务器控件时，可以重写此方法以呈现服务器控件。 

　　(2) protected virtual void RenderChildren(HtmlTextW]]></description>
      <link>http://www.sinoprise.com/showtopic-158.aspx</link>
      <category>ASP.NET</category>
      <author>enjoyo</author>
      <pubDate>Fri, 25 Apr 2008 16:37:17 GMT</pubDate>
    </item>
    <item>
      <title>在ASP.NET中如何动态加载用户控件</title>
      <description><![CDATA[来点实际的,呵呵,下面是最精炼的代码: 
             protected override void OnInit(EventArgs e)
                {
                        base.OnInit(e);
                        Control form = this.......]]></description>
      <link>http://www.sinoprise.com/showtopic-157.aspx</link>
      <category>ASP.NET</category>
      <author>enjoyo</author>
      <pubDate>Fri, 25 Apr 2008 16:24:58 GMT</pubDate>
    </item>
    <item>
      <title>如何禁用ViewState</title>
      <description><![CDATA[默认情况下，ViewState是被启用的，比如提交表单后，表单中输入的值会自动保留。但是如果不需要保留，也可以将其禁用，这样可以节省资源。下面3种方式就可以分别禁用某一个控件、某一个页面和整个应用程序的ViewState。

1) 控件禁用：将控件的EnableViewState属性设置为false；
2) 页面禁用：在页面的Page指令中添加EnableViewState=&amp;quot;fa]]></description>
      <link>http://www.sinoprise.com/showtopic-156.aspx</link>
      <category>ASP.NET</category>
      <author>enjoyo</author>
      <pubDate>Fri, 25 Apr 2008 16:23:42 GMT</pubDate>
    </item>
    <item>
      <title>Guide: Porting ASP.NET Applications</title>
      <description><![CDATA[Table of contents showhide] 

1 Introduction

2 Getting started

2.1 Prerequisite software


3 Porting the code

4 Required assemblies

4.1 Configuration files

4.1.1 DbProviderFactory ......]]></description>
      <link>http://www.sinoprise.com/showtopic-133.aspx</link>
      <category>ASP.NET</category>
      <author>enjoyo</author>
      <pubDate>Wed, 02 Apr 2008 15:14:32 GMT</pubDate>
    </item>
    <item>
      <title>ASP.NET的错误处理机制</title>
      <description><![CDATA[对于一个Web应用程序来说，出错是在所难免的，因此我们应该未雨绸缪，为可能出现的错误提供恰当的处理。事实上，良好的错误处理机制正是衡量Web应用程序好坏的一个重要标准。试想一下，当用户不小心在浏览器输入了错误的URL或者当用户提供了一些信息导致程序出错的时候，如果我们没有对这些情况进行处理，而是任由404或是500的错误页面甚至出错的堆栈信息呈现在用户面前，这无疑会把一些用户给吓跑。所以，在我们开]]></description>
      <link>http://www.sinoprise.com/showtopic-130.aspx</link>
      <category>ASP.NET</category>
      <author>enjoyo</author>
      <pubDate>Tue, 01 Apr 2008 18:38:59 GMT</pubDate>
    </item>
    <item>
      <title>ASP.NET底层架构探索之ASP.NET管道</title>
      <description><![CDATA[HttpApplication触发事件来通知你的程序有事发生,以此来负责请求流转.这作为HttpApplication.Init()函数的一部分发生(用Reflector查看System.Web.HttpApplication.InitInternal()方法和HttpApplication.ResumeSteps()方法来了解更多详情),连续设置并启动一系列事件,包括执行所有的处理器(handl]]></description>
      <link>http://www.sinoprise.com/showtopic-129.aspx</link>
      <category>ASP.NET</category>
      <author>enjoyo</author>
      <pubDate>Tue, 01 Apr 2008 18:34:13 GMT</pubDate>
    </item>
    <item>
      <title>FastCGI support for Mono's ASP.NET</title>
      <description><![CDATA[Brian Nickel worked on extending our hosting server for ASP.NET applications (XSP) to support FastCGI. Robert Jordan today integrated his Summer of Code project into the main distribution for XSP. Unt......]]></description>
      <link>http://www.sinoprise.com/showtopic-125.aspx</link>
      <category>ASP.NET</category>
      <author>enjoyo</author>
      <pubDate>Mon, 31 Mar 2008 12:01:39 GMT</pubDate>
    </item>
    <item>
      <title>Asp.net Mvc Framework 系列</title>
      <description><![CDATA[做为设计模式的王者,MVC在众多领域都成为良好的模型的代名词,前日我们只能靠Monorail来实现Asp.net的Mvc的而且确Asp.netMvc已经成为现实
本文只想让大家更直观地认知Asp.net Mvc,如果语言有所不当,还望先贤海涵,当然,如果文中有所纰漏还希望大家指出
尽量本着对初学者负责的态度来写,但期间的恒心与毅力相信过来的人更加明白,所以如果书写有误希望大家谅解.

As]]></description>
      <link>http://www.sinoprise.com/showtopic-121.aspx</link>
      <category>ASP.NET</category>
      <author>enjoyo</author>
      <pubDate>Fri, 28 Mar 2008 18:18:31 GMT</pubDate>
    </item>
    <item>
      <title>javascript压缩</title>
      <description><![CDATA[Ajax除了自己要写js代码外，同样也免不了要使用其它第三方js库。当你在为提高了用户体验，做出了很绚丽的效果而欣喜的时候，是否想过优化一下JS的效率,比如微软的live，其中的js做了压缩处理。JS的速度分为两种，下载速度和执行速度。今天就先来说说下载速度。要想js的下载速度快，就需要尽量减小js文件的大小。这里我们可以使用一个工具ESC(ECMAScript cruncher)来帮我们完成这个]]></description>
      <link>http://www.sinoprise.com/showtopic-117.aspx</link>
      <category>ASP.NET</category>
      <author>enjoyo</author>
      <pubDate>Wed, 19 Mar 2008 00:07:35 GMT</pubDate>
    </item>
    <item>
      <title>Atlas Video Tutorials Download</title>
      <description><![CDATA[In this video series Joe Stagner and others from the Microsoft product team demonstrate how to use ASP.NET AJAX.

Get Started with the ASP.NET AJAX Control Toolkit
Learn how to extend your ASP.NET ]]></description>
      <link>http://www.sinoprise.com/showtopic-95.aspx</link>
      <category>ASP.NET</category>
      <author>enjoyo</author>
      <pubDate>Fri, 07 Mar 2008 18:54:56 GMT</pubDate>
    </item>
    <item>
      <title>GridView实现自定义时间货币等字符串格式</title>
      <description><![CDATA[在asp.net 2.0中，如果要在绑定列中显示比如日期格式等，如果用下面的方法是显示不了的 &amp;lt;asp :BoundField DataField=&amp;quot;CreationDate&amp;quot; 
DataFormatString=&amp;quot;{0:M-dd-yyyy}&amp;quot; 
HeaderText=&amp;quot;CreationDate&amp;quot; /&amp;gt;主要是由于htmle]]></description>
      <link>http://www.sinoprise.com/showtopic-73.aspx</link>
      <category>ASP.NET</category>
      <author>xiaoheilong</author>
      <pubDate>Fri, 22 Feb 2008 14:46:30 GMT</pubDate>
    </item>
    <item>
      <title>Firefox 3 Beta 3 Now Available</title>
      <description><![CDATA[Firefox 3 Beta 3 Now Available 

下载: http://www.mozilla.com/en-US/firefox/all-beta.html




http://lifehacker.com/assets/resources/2008/02/firefox3-beta3.png

All platforms: Mozilla has jus......]]></description>
      <link>http://www.sinoprise.com/showtopic-72.aspx</link>
      <category>ASP.NET</category>
      <author>enjoyo</author>
      <pubDate>Fri, 22 Feb 2008 14:19:47 GMT</pubDate>
    </item>
  </channel>
</rss>