Posted by: Kaushal on: May 21, 2009
Just look at what I found from my MCA II Sem CONM book…
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 5, 2009
I am trying to validate textbox for numeric entry, while I added this code to accomplish in page_load event:
textbox.Attributes.Add(“onkeypress”, “return (window.event.keyCode == 45 || window.event.keyCode == 13 || window.event.keyCode == 8 || window.event.keyCode == 9 || window.event.keyCode == 189 || window.event.keyCode == 109 || (window.event.keyCode >= 48 && window.event.keyCode <= 58) )”);
It worked fine in [...]
Posted by: Kaushal on: May 4, 2009
Generally, I would like to blog post any errors that I face duing development. So that it would be helpful to me for my future reference in case I face it again as well as for the sake of any blog readers who may face same error.
Talking about the error “Invalid URI: The hostname could [...]
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 [...]