前段時間有台伺服器因為未知的原因常常黑屏,昨日剛把伺服器給取了回來先是重裝了一下系統.因為上次出問題的原因並沒有找到,訪問量過大也是有可能的,於是我準備對這台伺服器上部署的WEB程式進行一次壓力測試.我之前並沒有正式的對程式進行過壓力測試,在VSTS2005中內建的LoadTest就是做壓力測試用的,不過我這次使用的並不是它,而是Microsoft的另一個小的軟體:Microsoft Web Application Stress
今天一早起來,發現網站的通行證癱瘓了,無法顯示,立刻上伺服器調用通行證,依然如此.提示出錯資訊如下:The remote name could not be resolved: 'xx.com' Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about
When you copy from one program's document and paste in another program's document, you almost never want to keep the formatting.A simple example is when you copy from word or other document into the rich text control that .Text uses on the New
In this implementationtime,I will tell you how to clone a node from a XmlDocument and then insert into another XmlDocument. And i will do this by two different way,why?yes,I just want to explain which way is the best. First i need to load
Attributes are classes that allow you to add additional information to elements of your class structure(types, methods, properties, and so forth).This sample demonstrates the creation and use of custom attributes to extend and modify the
Long time ago, I upgraded my msn to a new version 6.1, since then i'm no longer able to login. when i sign in, a message pops up, that says, something like: Sorry we could not sign you in, because it appears like your password or sign-in
In my previous post, I get a custom key's value from config file in web/windows applications by writing a custom class. shortly afterwards, jjstar gave me a feedback, he reminded me of using System.Web.Caching.CacheDependency to do that, and I
Interview Questions : .NET Remoting1. What's a Windows process? It's an application that's running and had been allocated memory. 2. What's typical about a Windows process in regards to memory allocation? Each process is allocated its own block
In this implementationtime,I just show you a simple way to validate a Guid.1/// <summary>2/// 驗證給定字串是否是合法的Guid3/// </summary>4/// <param name="strToValidate">要驗證的字串</param>5///
Sometimes our clients maybe have such demand it is load the datagrid data(eg.address book) into an excel spreadsheet. There are several ways to accomplish this, However there is a simple, effective way to do this. Here's the code:1public
These days I am working on some basic research on Microsoft Office Html Viewer.The Microsoft Office HTML Viewer is a HTML viewer for displaying Office documents in an HTML format.If you don't know what can the Microsoft Office HTML Viewer do for
Issue Description I want to use window.showModalDialog to open a pop up window and then select a value in the Pop up window and return it back to Opener window. My pop up window is an .aspx page that contains a radio button list (a list of citys).
I love the new song from MLTR in their latest released album - "Take Me To Your Heart".Have you ever heard it? What do you think of the theme song "Take Me to Your Heart"[you could watch the music video here]? In love with this song when I
I encountered a problem when coding where I wanted to convert a string to an enum last night, First, I generated a long list of switch and case statements to handle this problem. But it is very awkward, so I tried to find a simple way to do it,