Summary
A total of 9 articlesArticle:
- Latency loading with updatepanel
- Tips and tricks: URL rewriting in ASP. NET
- SYS. webforms. pagerequestmanagerparsererrorexception -- what is this? How should we avoid it ?)
- Compile your own Rich Text Editor
- Example of Mike Woodring. netProgram
- Built-in asynchronous I/O support in ASP. NET
- Cross-browser support in ASP. NET Ajax control Extender-more clever than I think
- Migrate from ASP. NET web site to ASP. NET web application project
- IIS 7: Windows Vista and web servers later
[1]Delayed load with an updatepanel(Using updatepanel for delayed loading)
If a step is time-consuming during page loading, consider this clever method. The basic idea is to first display a part of the page as soon as possible. Then, the timer in the page triggers an updatepanel for update, and then performs those long operations on the server. The advantage of doing so is to give feedback to users as soon as possible, so don't let them wait.
In fact, this is not a better way to kill chickens with a cow, but if you really don't catch a cold with JavaScript, this is also a good choice.
[2]Tip/TRICK: URL rewriting with ASP. NET(Tips and tricks: URL rewriting in ASP. NET)
This is a brief introduction of Scott daniu to URL re-writing articles (on the ASP. NET platform of course). It is nice to say that it is called outline program. What is hard to say is general talk. However, if such a master writes some more meticulous articles, it seems a bit shameful (haha, joke ).
To be honest, this article is still quite local talented! Scott's article gives us peace of mind that there are no uncommon words or complex syntaxes. After reading it, we will have a burst of confidence in our English skills. This includes the following content, which is very suitable for friends who have never touched on URL rewriting. In particular, the sample programs are provided in all four methods, which is rare!
- Why do I need URL rewriting/ ing?
- Example of URL rewriting
- Method 1: Use the request. pathinfo parameter to replace querystring
- Method 2: Use httpmodule
- Method 3: Use httpmodule on IIS 7 to rewrite a URL without an extension.
- Method 4: Use isapirewrite on IIS 5 and IIS 6 to rewrite URLs without extension.
- Processing ASP. NET delivery during URL rewriting
- Correct Processing of reference to CSS and Images
[3]SYS. webforms. pagerequestmanagerparsererrorexception-what it is and how to avoid it(SYS. webforms. pagerequestmanagerparsererrorexception -- what is this? How should we avoid it ?)
SYS. webforms. pagerequestmanagerparsererrorexception is actually a client exception defined in ASP. NET Ajax. Don't be scared by such a long abnormal name. In fact, it is very simple, that is, the client's pagerequestmanager encountered an error in parsing the HTML (asynchronous sending via updatepanel) returned by the server.
We all know that the asynchronous Response Information implemented by updatepanel has a unique format that can be understood by the client pagerequestmanager. If you accidentally disrupt this format during the asynchronous delivery process, this exception is very likely to be seen. For example, in page_load, response. Write () is used to write a piece of JavaScript.
This article also provides several common causes of SYS. webforms. pagerequestmanagerparsererrorexception and provides solutions. It is a rare masterpiece for in-depth analysis of ASP. NET Ajax.
[4]Rich Text Editor-Part I/Part II(Compile your own Rich Text Editor)
Have you ever wondered how the rich text editor we use every day on the internet is written? What advanced technology is used? In fact, it is not difficult. Let's take a look at these two articles. Although the length is a bit long, who makes people have technical skills?
[5]Mike Woodring's. Net Sample Page(Mike Woodring's. Net sample program)
Mike Woodring provides some small. Net sample programs, which can also be calledCodeSegment. The content is rich and can be quickly viewed as needed. It includes the following major categories:
- Remoting and sockets
- Reflection
- Threading and Synchronization
- Assemblies
- Security
- Configuration
- Context
- Miscellaneous
[6]Built-in asynchronous I/O support in ASP. NET(Built-in asynchronous I/O support in ASP. NET)
I/O operations are generally time-consuming-everyone on Earth knows. ASP. NET (or. NET Framework) has some built-in mechanisms to assist us with asynchronous I/O operations. This article introduces some typical scenarios and is suitable for getting started. Includes the following content:
- Asynchronous file read/write
- Asynchronous remoting
- XML Web Services
- Asynchronous Network Communication
[7]Cross-browser ASP. NET Ajax control extender support-trickier than I thought(Cross-browser support in ASP. NET Ajax control Extender-more clever than I think)
This article analyzes the specific implementation methods of ASP. NET Ajax control Extender for cross-browser support, and provides many examples. The author is currently engaged in the development of ASP. NET Ajax control extender and has considerable experience. If you want to know some cross-browser compatibility implementations, you can refer to this article.
[8]ASP. NET projects to WAP Conversion(Migrate from ASP. NET web site to ASP. NET web application project)
The ASP. NET web application project has been released for a long time. It is not only favored by those "Nostalgic" developers, but also can make up for the shortcomings of many ASP. NET web sites.
But from ASP. net web site to ASP. the migration process of the Net web application project is not always that simple. Daniel Rick Strahl provides a detailed migration guide in this article, which is worthy of our reference.
[9]IIS 7.0: Certificate e the Web server for Windows Vista and beyond(IIS 7: Windows Vista and web servers later)
This is an article about IIS 7, which is not in-depth, but completely covers all the new features of IIS 7. As an article on msdn, it naturally adheres to its usual seriousness. It may not be as interesting as a blog article, but its authority cannot be challenged. When you are free, you can check it out to avoid being abandoned by Microsoft's technological development ~~
This article introduces the following content about IIS 7:
- Modular Web Server
- Simplified deployment and Configuration
- Improved Administration
- . NET Framework and scripting
- Building Web server features
- ASP. NET Integration
- Improved security
- Improved diagnostics
- Diagnosing errors without debugging
- Improved performance
- Backward compatibility
[A] Windows Live Messenger
Finally, let's take a look at the following.