Members

Technology Zones

Articles

Hosted By

MaximumASP

Info

This resource has not currently been approved, and is not currently linked to from our directory of resources. It is being displayed here for preview by the author and moderators only.
Rated
Read 6,861 times

Related Categories

Amit's Blog

Sharing Thoughts and Learning on Asp.net, Asp.net Ajax, .NET and many more.
KaziManzurRashid
http://www.geekswithblogs.com/rashid   RSS feed

Sharing Thoughts and Learning on Asp.net, Asp.net Ajax, .NET and many more.

Recent Posts

    Displaying 1 to 25 of 63 archived entries.
  • My New Article - ASP.NET AJAX Control Development

    Published on 26 Jun 2007 by Kazi Manzur Rashid

    A must read who wants to develop controls in Asp.net Ajax Framework. Covers in depth details of both client and server side programming. Check it out.

  • Generate HTML from an ITemplate

    Published on 23 Jun 2007 by Kazi Manzur Rashid

    While working on Ajax Data Controls Project, I need the generated HTML from an ITemplate. Here is the code that generates the html, some of you might find it useful. 1: StringBuilder output = new StringBuilder(); 2: StringWriter sw = new StringWriter(output, CultureInfo.InvariantCulture); 3: HtmlTex

  • Performance Benchmark with an Handy Class

    Published on 21 Jun 2007 by Kazi Manzur Rashid

    Instrumentation and Logging is an essential part of Software Development. Generally, most of the developer thinks instrumentation and logging is all about exception logging in a text file, which is not correct at all. Certainly, exception takes a major part in the instrumentation and logging. Howeve

  • Utilize ThreadPool in WebService

    Published on 18 Jun 2007 by Kazi Manzur Rashid

    Asp.net 2.0 has a built-in feature for creating multi-threaded page AKA AsyncPage, but for Web Service threading, there are no out of the box support. The following code snippet will show you how to create a multi-threaded web service. For the sake of the example, let us assume that we are creating

  • My New Project AjaxDataControls

    Published on 15 Jun 2007 by Kazi Manzur Rashid

    I have just started a new Project in CodePlex AjaxDataControls. I am planning to include GridView, DataList, Repeater, DetailsView, FormView and ObjectDataSource in the initial release. Since the Asp.net version of these controls does not have any object model in the client side as those were releas

  • Redirects to a different page when Asp.net session expires

    Published on 08 Jun 2007 by Kazi Manzur Rashid

    While visiting Asp.net forum I found a lot of request on how to show a different page when the asp.net session expires. The following line will exactly do the same: HttpContext.Current.Response.AppendHeader("Refresh", Convert.ToString(((HttpContext.Current.Session.Timeout * 60) - 5)) + "; Url=YOUR P

  • Column Drag and Drop Support Added in Ajax Grid

    Published on 07 Jun 2007 by Kazi Manzur Rashid

    My Recent article Asp.net Ajax Grid and Pager is a huge hit. Currently it is in Asp.net front page. I have recently added Column Drag-Drop Support. If you find the Control exciting, please vote me to win the monthly article contest at DotNetSlackers.com.

  • Asp.net Ajax Control Development

    Published on 02 Jun 2007 by Kazi Manzur Rashid

    In my previously article I have presented the Asp.net Ajax Grid, I am currently writing a comprehensive guide of Developing Asp.net Ajax controls. This will certainly help you to write your own custom control. If you have not checked my previous article I strongly recommend you to read it first.

  • Asp.net Ajax Grid and Pager Control

    Published on 31 May 2007 by Kazi Manzur Rashid

    My recent article "ASP.NET Ajax Grid and Pager" has been published in DotNetSlackers.com. A fully designer supported Ajax Control, which mimics the GridView Control in client side. Please vote for me if you find it useful.

  • Secure Cookie

    Published on 18 Jan 2007 by Kazi Manzur Rashid

    This my second post of almost same topic asp.net lacking. This time it is Cookie. Still Asp.net has the lacking of creating encrypted cookie. Here is another handy class which generates encrypted cookie. Usage: //Writing CookieSecureCookie.Set(Response, "Key1", "Value1", DateTime.Now.AddDays(1));Sec

  • Check User Name in Ajax way

    Published on 30 Jun 2007 by Kazi Manzur Rashid

    While visiting the Asp.net Ajax forum I found quite a few post on the User Name Checking when creating an User. This is very common request and it is available in many Websites, So I decided to create a small sample. The following shows the full code listing:<%@ Page Language="C#"%> <%@ Imp

  • SJAX Call

    Published on 04 Jul 2007 by Kazi Manzur Rashid

    While visiting Asp.net forum, I found an interesting request, A forum member is trying to implement some validator controls where the member wants to call a Web Service method, since the nature of Asp.net Ajax is asynchronous the call does not return instantly. In the reply, another member from Micr

  • My Ajax Articles

    Published on 04 Jul 2007 by Kazi Manzur Rashid

    I have been just informed that Scott Guthrie mentioned my Asp.net Ajax articles in his latest post. Check it out. If you find these articles useful, please vote for me to win the DotNetSlackers.com article contest.

  • Join Community Credit

    Published on 07 Jul 2007 by Kazi Manzur Rashid

    I just learned that I won the 7th prize for the month of June of Community-Credit contest. I joined it for Fun and it indeed is a fun, they give Stupid prize to Smart People. Check out what I won!!! A Tetris 3D !!!. They usually give 10+ prize in each month, a well thought scheme to decide the winne

  • Another Article on Ajax Control Development

    Published on 09 Jul 2007 by Kazi Manzur Rashid

    Another addition of my Ajax Control Development Article series. This time it it Asp.net Ajax Repeater. Check it out.

  • Cancel a Web Service Call in Asp.net Ajax

    Published on 14 Jul 2007 by Kazi Manzur Rashid

    In this post I will show you how to cancel a web Service call after it is invoked, I will also provide you some interesting findings (Maybe a Bug) in Asp.net Ajax Network Layer. There are plenty of examples available on how to abort an UpdatePanel AsyncPostback but none for the WebService. The follo

  • I am the winner for the Month of June

    Published on 18 Jul 2007 by Kazi Manzur Rashid

    This morning dotnetslackers announced me as the winner of the XBox article content for the month of June. Special thanks to everyone who vote my Asp.net Ajax Control Development article. Some of my friends asked me why did I choose to write in dotnetslackers over codeproject when codeproject got 8x

  • Asp.net Ajax and VS2003

    Published on 21 Jul 2007 by Kazi Manzur Rashid

    Few days back one my of ex-colleague called me to know what is the best platform of Ajax to work in VS2003 Project, One of his client wants to implement some Ajax features in his existing application . Is it Ajax.net, Prototype, jQuery or Dojo? When I replied him Asp.net Ajax 1.0, he seems bit confu

  • Combine Multiple JavaScript and CSS Files and Remove Overheads

    Published on 25 Jul 2007 by Kazi Manzur Rashid

    When developing a large web application especially if it is Ajax enabled, we often ended up with a larger number of JavaScript and Cascading Stylesheet files and it is quite common that more than one JavaScript file is involved for a single functionality. For example, if you are using DataTable widg

  • Implement Yahoo's YSlow in your Asp.net pages

    Published on 29 Jul 2007 by Kazi Manzur Rashid

    I have got quite a bit of comments and feedbacks on my previous post where I shown how to combine multiple JS and CSS Files into one. So I decided to enhance it a bit more. Now it Supports: GZip or Deflate Compression based upon the browser header. Can be turned on/off from web.config Minifier for b

  • Create An Ajax Style File Upload

    Published on 31 Jul 2007 by Kazi Manzur Rashid

    If you visit Asp.net Ajax Forum, you will find hundreds of request on File Upload Control that it does not give Ajax version of the page when it is placed in an UpdatePanel. Certainly, it is not possible, as the XMLHTTPRequest object that is used internally to post the form does not support file upl

  • Asp.net Ajax UpdatePanel Simultaneous Update - A Remedy

    Published on 08 Aug 2007 by Kazi Manzur Rashid

    If you ever try to do more than one simultaneous partial update with Asp.net Ajax Update Panel, I guess you already found that Asp.net Ajax Framework cancel the current update request and start the new one. You think I am kidding? Okay lets try the following code:<%@ Page Language="C#"%> <!

  • Loading UserControl Dynamically in UpdatePanel

    Published on 11 Aug 2007 by Kazi Manzur Rashid

    In this post, I will show you how to load different user control in UpdatePanel from different menu item click. I have found a lot of request in Asp.net Ajax Forum and some of them are having misconception about this. Once you complete reading this post you will be able to load controls dynamically

  • My New Article - Effective Error Logging in Asp.net Ajax

    Published on 12 Aug 2007 by Kazi Manzur Rashid

    My latest article Asp.net Ajax Error Logging has been just published in DotNetSlackers.com. In this article, I have demonstrate how to extend Asp.net Ajax Framework to create an effective error logging system which support multiple trace listener like Enterprise Library. A must read if you are devel

  • Book Review - Asp.net Ajax Update Panel

    Published on 17 Aug 2007 by Kazi Manzur Rashid

    I recently did a review on Asp.net Ajax Update Panel of O'Reilly which is now published in DotNetSlackers.com. Check it out.

  • Next > >

Comments