Browse by Tags

All Tags » Kaushal (RSS)
I prefer to use fiddler which is an awsome tool for tracing up the http trafic, to test the performance script result OR to generate the Visual Basic web test script for performance testing. While working on one of my live site it helped me a lot as a...
For those developers who are looking forward for Silverlight 5; there is one great new that: at the Silverlight FireStarter event MS unveiled the next release of Silverlight (that is version 5 beta); the next version of its rich Internet platform and...
I am going to write this entry once I get some time. Till if anybody have already any idea and wish to have code for this, I have created a small sample application with this entry. Please find it in attachment. Click here if you don't find the attachment...
My friend developers, I have something this time handy code block which is useful to transform any Xml data with the desired Xslt output file. Below code snippet provides you line by line code comment for better understandability. The function requires...
This something like - anybody would think why I will require to do this thing ever?. I mean calling a web service without adding reference of it. Obviously, to call a web service I would simply add the "Web Reference.." from the Solution Explorer;...
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...