-
Filling Text Boxes for Testing
It is often required to fillin the form on webpage so you can test the form submission action. For this I often need to put different value so I can recognize the values are coming good. Like I need to create PDF on the fly, In that I need to fill the form on web…
-
Creating on-the-fly PDF using C#.NET
Few days back I post about how to create PDF using PHP. But I always wonder How can I do it using .NET Framework, as what I found that PDF library for .NET are more than total project cost. But thanks to Open source developer I found few libraries out their for free. Â One…
-
Creating Database
I have been assigned a new project. For which I am preparing its database. Its been a fun doing so, as I have complete overview of the Application, that I am going to develop, as I make Database on paper. But all fun goes when I have to make that db in SQL Server 2005.…
-
PDF generation through PHP Code
I have use PDF file gets emailed to customer feature in lot of my project. For this we use various PDF generation classes available. But today I am going to talk about absolutely free method of doing this. For this I use html2pdf and GhostScript. Just a suberb combination of making PDF on the fly.…
-
Multithreading : How important it is for human
I just finish on windows application, that need to parse Given webpage for some data, and store them in CSV format. As this project is not too big, I never plan to use high end concepts and very complex exceptional handling. Similarly I never plan to use multithreading in my application. Every thing works perfect,…
-
Two Forms in ASP.Net
Hi, As any other ASP.Net developer, I was not feeling comfortable with only one form concept that ASP.Net has (not sure about v2.0 as never work on it). Also, when you have to put something like google Search or other such service on your Site and place for such “explicit” forms are in middle of…