guyS's WebLog

IShare, My DotNet Fingerprint

Browse by Tags

All Tags » Tips » ASP.NET (RSS)
Calling web pages using HttpWebRequest
I use the following method when I had to call an Asp web page which return to me the result as Xml, from my Web Services. It was done in order to externalize the services from an existing DNA application to a Smart Client. public static string GetABHttpRequest...
Format a printing document over the web
printing solutions over our web applications using Html's is not trivial. Its getting harder when we need to calculate the printing output number of pages and when we need to add an header and footer in each page at the exact position. Microsoft enhance...
Posted: May 20 2005, 02:38 PM by guyS | with no comments
Filed under: ,
Tip for optimizing IIS6 memory usage
Our server/s memory is not endless and we need to divide it between our OS and our applications wisely in order to achieve better performance. In order to optimize the use of our server memory we should be familiar with three terms: Page File The memory...
Posted: Apr 30 2005, 12:37 AM by guyS | with 1 comment(s)
Filed under: ,
Getting the next page from a store procedure
Here is a the store procedure implementation from "Custom Data Paging in ASP_NET - ASP_NET" article which located on CodeProject Similar code were added to one of the articles I 've just read in MSDN May Magazine. We can use it with a DataGrid custom...
ASP.NET Performence - more details for previous post...
In one of the remarks regard the post on web application performance concerns I've being asked to be more specific and to give more details regard my tips and I guess I should. So here is my extra details for each of the tips: Content expiration for static...
Posted: Mar 05 2005, 02:16 PM by guyS | with no comments
Filed under: ,
Planning, testing and tuning for ASP.NET and IIS 6.0
This is very important subject that should be taken into account from first stage of the project and on each step to come. Unfortunately, I saw too many web applications with great back, and front end with rich UI but with poor performance. These kind...
Posted: Mar 04 2005, 12:57 PM by guyS | with 1 comment(s)
Filed under: ,
The Enterprise Localization Toolkit
The Enterprise Localization Toolkit is a solution for managing localized applications. Its a free, not supported tool set given by Microsoft and we can use it in our applications. We just completed a project where we decided to use this tool. We had about...
Failed to load viewstate .. + dynamically loading User Controls
After implementing Page Controller pattern and after we dynamically loaded user controls in child page we got the above exception. The exception was raised when we clicked on IE back button and then presses submit on the content user control entry form...
Using Embedded Resource in your application
When u want to attach your application assembly file additional information that located in a file (XML, Txt, image or other type) you can attach it as Embedded Resource. The advantages I can raise for doing so r : 1.) You do not need to deploy the embedded...
More Posts