Posted by: Kaushal on: May 7, 2009
This is a mere note to remember for future rather than a blog entry. While I am working on code to download file from server. I write below code:
{
[...]
Posted by: Kaushal on: May 4, 2009
There are possible work-a-round and solution to work upon “session auto expire earlier” issue. Setting SessionTimeOut in web.config would no be enough to have your session persist for the said time or you want it to be.
Here I have found some solution which worked in my case:
Read More…
Posted by: Kaushal on: May 4, 2009
Core ASP.NET Card, Get it Free
Core ASP.NET: This Refcard summarizes the most commonly used core functions and controls in ASP.NET
Try it! Its free but requires registration.
Read More…
Posted by: Kaushal on: May 4, 2009
Here is another requirement (perhaps a common requirement!) I needed to implement in one of on-going project website application. I needed to generate a PDF file as output from the inputs entered by end-user in a form. On [...]
Posted by: Kaushal on: April 27, 2009
While working on DNN 5.0 site, I was trying to have a left menu navigation using AJAX Accordion. Even, I got succeeded in implementing that but i come accross an issue of – flickering the Accordion control in IE while opening and closing and navigating thru panes.
After googling, I came to know about the solution [...]
Posted by: Kaushal on: March 16, 2009
While working on DNN 5.0 site, I was trying to have a left menu navigation using AJAX Accordion. Even, I got succeeded in implementing that but i come accross an issue of – flickering the Accordion control in IE while opening and closing and navigating thru panes.
After googling, I came to know about the [...]
Posted by: Kaushal on: January 1, 2009
You would obviously have come across the “Browser Compatibility” issues many times while designing a webpage. For example, assigning a CSS class to any control may render well with IE but it may not get rendered that perfect way in Mozilla; and if you fix for Mozilla then IE rendering may get affected. But, we [...]
Posted by: Kaushal on: September 8, 2008
I needed to generate Medium (250 X 250) and small (150 X 150) size images from Large (500 X 500) size images as Product images to display in a shopping cart application.
To generate thumbnail images (for scenario I wrote above, or to display iconic Product images within GridView along with Product Details):
Read More…