ASP.NET
文章平均质量分 55
garcon1986
永远走在路上的前行者
关注实现细节,向专家进发!!!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Interview Questions for ASP.NET Part - 1
Dot Net - Asp.Net1 . Describe the role of inetinfo.exe, aspnet_isapi.dll andaspnet_wp.exe in the page loading process.inetinfo.exe i转载 2011-08-17 18:20:05 · 1402 阅读 · 0 评论 -
IIS服务器下ASP程序的配置问题-URL Rewriting && Multiple Site ID
/*By Jiangong SUN*/两个IIS服务器下ASP程序的配置问题1,错误:This collection already contains an address with scheme http. There can be at most one address per scheme in this collection.分析:这时你的IIS服务器可能为一个ASP.N原创 2011-08-03 23:39:17 · 1531 阅读 · 0 评论 -
DateTime.UtcNow.ToString(DateFormat) 时间格式化问题
/*By Jiangong SUN*/正确代码如下:string DateFormat = "dd/MM/yyyy HH:mm";string[] s = DateFormat.Split(' ');string d1 = DateTime.UtcNow.ToString(s[0], System.Globalization.DateTimeFormatInfo.Invar原创 2011-08-26 23:34:25 · 4027 阅读 · 0 评论 -
ASP.NET程序向Event Viewer写入Event Log
/*By Jiangong SUN*/在web.config中的appsettings中写入在项目中global.asax中protected void Application_Start(object sender, EventArgs e){ Log.Configure(Settings.EventSource, Settings.EventLo原创 2011-09-01 23:20:46 · 1687 阅读 · 0 评论 -
Browser cache problem(IE) for displaying new uploaded image with same name
/*By Jiangong SUN*/In images management page of my back office, all the uploaded images are displayed in it.But when i upload a new image with the same name for a existing image, the new uploaded原创 2011-09-06 22:29:58 · 896 阅读 · 0 评论 -
ASP.NET forms authentication
/*By Jiangong SUN*/To implement a form authentication, you need add the following code in web.config: enableCrossAppRedirects means authenticated users in this app原创 2011-09-07 00:01:57 · 854 阅读 · 0 评论 -
Data Transfer Object (DTO)
/*By Jiangong SUN*/DTO pattern is used to "transfer data" using objectsDTO vs. VO(Value Objects)Value Object must be immutable, serializable and it’s content must be publicly accessi原创 2011-09-13 22:32:59 · 1091 阅读 · 0 评论 -
ASP第一天
/**************by Jiangong SUN*****************/ 技术:- SQL Server 2005 SP4 (Version 9.005057)- ASP.NET, C#- Entity framework / LINQ- WCF- SVN (ANKHSVN & TortoiseSVN)新的概念:- ASP (Acti原创 2010-10-27 05:30:00 · 800 阅读 · 0 评论 -
Microsoft Techdays Paris - Day One
/*Author : Jiangong SUN*/I've participated microsoft techdays paris in congress palace of paris between 12 and 14 february. I was surprised by the number of the attendants of this conference, a原创 2013-03-20 22:10:01 · 4253 阅读 · 0 评论 -
A little tutorial on CodeFluent Entities with ASP.NET MVC4
A little tutorial on CodeFluent Entities with ASP.NET MVC4原创 2013-07-23 22:53:10 · 1429 阅读 · 0 评论 -
IIS configuration with support of multiple domain urls
IIS configuration with support of multiple domain urls原创 2011-11-08 05:46:52 · 939 阅读 · 0 评论 -
ASP.NET - Application Life Cycle Principle
ASP.NET - Application Life Cycle Principle原创 2013-09-04 05:17:48 · 1773 阅读 · 0 评论 -
Windows Presentation Foundation Introduction(IV) - Data Binding
Windows Presentation Foundation Introduction(IV) - Data Binding原创 2012-12-11 04:44:53 · 1041 阅读 · 0 评论 -
Knowledge Conclusion - PART I: ASP.NET
Knowledge Conclusion - PART I: ASP.NET原创 2012-01-16 02:21:55 · 856 阅读 · 0 评论 -
Create Virtual Host in IIS 7
/*By Jiangong SUN*/1. Add your ideal host name in your local machineGO to C:\Windows\System32\drivers\etcModify your "hosts" file as administrator Add your mapping line with your virtual原创 2011-10-27 21:56:58 · 1084 阅读 · 0 评论 -
Some points about postback and multi-language drop down list
/*By Jiangong SUN*/Cultures.ascx.cs:public partial class Cultures : System.Web.UI.UserControl { public string SelectedCultureCode { get { return ddlCultures.SelectedValue原创 2011-11-29 16:57:34 · 815 阅读 · 0 评论 -
ASP.NET access modifiers
/*By Jiangong SUN*/publicThe type or member can be accessed by any other code in the same assembly or another assembly that references it. It is accessible for all.privateThe原创 2011-09-13 16:51:45 · 843 阅读 · 0 评论 -
Introduction to IIS 7 Architecture
IntroductionInternet Information Services (IIS) 7 provides a new request-processing architecture that includes:A new service, Window翻译 2011-08-19 03:09:06 · 1619 阅读 · 0 评论 -
ASP.NET Internals – IIS and the Process Model (IIS5, IIS6)
IntroductionMicrosoft Active Server Pages, also known as ASP, since its first release in late 1996 provided web developers with a rich转载 2011-08-19 02:50:40 · 1363 阅读 · 0 评论 -
How to realize range slider using jQuery
/*by Jiangong SUN*/Here is an sample for my project which is realized using aspx and jquery slider library.$(document).ready(function () { //centralised slider code var stepvalue原创 2012-10-15 21:44:43 · 1205 阅读 · 0 评论 -
Alternative solution for using IF condition with Eval in C# Repeater
/*by Jiangong SUN*/I have encountered the problem when i want to use IF condition for Eval in C# repeater a few days ago.The actuality is I can not use IF clause for Eval in a repeater. A solu原创 2012-01-04 17:42:34 · 1019 阅读 · 0 评论 -
IIS:The process cannot access the file because it is being used by another process.
/*by Jiangong SUN*/I have encountered the problem when i configure a website in IIS 7."The process cannot access the file because it is being used by another process. (Exception from HRESULT:原创 2012-09-28 16:38:13 · 5388 阅读 · 0 评论 -
Create stored procedure and integrate it into linq to entities
/*by Jiangong SUN*/Here I create a stored procedure for searching dealers in my database, it can receive several parameters.USE DATABASENAME;GOSET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER O原创 2012-01-04 04:59:09 · 1305 阅读 · 0 评论 -
How to create, host, test and consume a WCF Web Service
/*by Jiangong SUN*/WCF(Windows Communication Foundation) web service is used to facilitate the communication of different applications on different plateforms.ASMX web service support HTTP pro原创 2012-12-28 20:07:25 · 1827 阅读 · 0 评论 -
How to update ASP.NET Page's .designer.cs file in visual studio
/*****by Jiangong SUN*****/Address: http://write.blog.youkuaiyun.com/postedit/7330087Scenario:I want to add repeater, litteral or register user control in ASP.NET pages. Sometimes the page's "原创 2012-03-07 19:30:00 · 1045 阅读 · 0 评论 -
How to create RESTful WCF Service
/*by Jiangong SUN*/Based on my last post about how to create, host, test and consume WCF Service, here we will discover how to create RESTful WCF Service.“Representational State Transfer (RE原创 2013-01-07 04:33:39 · 1200 阅读 · 0 评论 -
Introduction to CookieManager
/*By Jiangong SUN*/CookieManager.cs:public static class CookiesManager { public static string SelectedCulture { get { return GetCookieVar(ECookieKeys.SelectedCulture);原创 2011-11-29 01:03:59 · 794 阅读 · 0 评论 -
How to implement double currency
/*By Jiangong SUN*/The principe is get the two price at the same place and switch one to another depending on what you want to display.You can implement it by using ajax and javascript in原创 2011-11-16 21:43:01 · 807 阅读 · 0 评论 -
Error 11011: Association End key property 'xxx' is not mapped
/*By Jiangong SUN*/This error probably occurs when you modify your tables and their relationships with other tables in your data model. I've seen this error several times today when i update my原创 2011-09-28 22:48:11 · 1693 阅读 · 0 评论 -
Knowledge Conclusion - PART II : CSharp, .NET
Knowledge Conclusion - PART II : CSharp, .NET原创 2012-03-07 01:01:29 · 1611 阅读 · 0 评论
分享