Posts

Showing posts from March, 2009

Render PDF File onto Client's Browser

Generic Procedure for Rendering given file to Client's Browser : protected void WriteToResponse( string fileName, bool saveAsFile, string fileFormat, System.IO. MemoryStream stream)         {             if (Page == null Page.Response == null ) return ;             string disposition = saveAsFile ? "attachment" : "inline" ;             Page.Response.Clear();             Page.Response.Buffer = false ;             Page.Response.AppendHeader( "Content-Type" , string .Format( "application/{0}" , fileFormat));             Page.Response.AppendHeader( "Content-Transfer-Encoding" , "binary" );             Page.Response.AppendHeader( "Content-Disposition" , string .Format( "{0}; filename={1}.{2}" , disposition, fileName, fileFormat));             Page.Response.BinaryWrite(stream.GetBuffer());             Page.Response.End();         }         //Saves File on Server - For given Location     

Modal Dialog Box using JQuery

Simple Demo using JQuery http://www.ericmmartin.com/projects/simplemodal/

JQuery With ASP.Net

Part1: The Client Side http://www.west-wind.com/presentations/jQuery/default.aspx Part2: Making Ajax Callbacks to the Server http://www.west-wind.com/presentations/jQuery/jQueryPart2.aspx Articles of Rick Strahl: http://www.west-wind.com/articles.aspx JQuery Events: Part1 part2

ASP.Net FAQs

http://forums.asp.net/t/1352706.aspx#_How_to_download

The South Indian Wedding

Good Article on South Indian Wedding: http://www.sanskrit.org/www/Samskaras/wedding.html

The South Indian Wedding

Good Article on South Indian Wedding: http://www.sanskrit.org/www/Samskaras/wedding.html