Browse by Tags

All Tags » KaushalParik (RSS)
friends... I have been re-awarded with 2009 Microsoft® MVP Award in .NET/ASP.NET Category. This is the second consecutive year as an MVP; and it feels like allmost full moon of my career!! The mail I received: Dear Kaushal Parik, Congratulations!...
Just check out microsoft.com/areyoucertifiable a funny dummy test environment who wants to appear and test yourself for ms certification. You can create login or can play as guest, select avtar. There are more than 400 Questions (objective - options to...
The default behaviour of AJAX Accordion is: you click on any Accordion pane (say; any control placed in Accorion Pane Header section) cause that pane to Expand and collapse rest of the panes other than the pane which you clicked. It is also fairly easy...
I need to add Captcha Control for couple of contact and submission forms to stop possible spam bots. I tried with the similar way I approched In previous website application developed in ASP.NET. But, Its even too easy to add Captcha capability in forms...
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: { int ChunkSize = 10000; string sFileFullPath = Server.MapPath("New Text Document.txt"); System...
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...
Core ASP.NET : This Refcard summarizes the most commonly used core functions and controls in ASP.NET Try it ! Its free but requires registration.
There will be South Asia MVP Open Day 2008 at Goa, India near around mid of November! Goa is a marvalous city with its lively culture, sumptuous food, and of course the beaches! I am eagerly waiting for!! I am expected to have Business and social networking...
Check out the code; how you can upload file to specified FTP Server programatically. /// <summary> /// Code to upload file to FTP Server /// </summary> /// <param name="strFilePath"> Complete physical path of the file to be...
Article is about : The ability to pass "a list of values" from .Net as a parameter to a T-SQL based stored procedure. Scenarios : There are lots of scenarios where we need to pass a list of values to save in database. Here's a couple of...