DotNetKick.com is an open-source project. Please report any bugs and let us know your great suggestions. Currently running svn revision 620 (rss)

Kick Spy!, Kick Zeitgeist and Kick Widgets

Stories recently tagged with 'dotnetcurry' Subscribe to this feed
9
kicks
published 1 day, 12 hours ago, submitted by vivekamar vivekamar 4 days, 14 hours ago

dotnetcurry.com — In the past we have often used the combination of the GridView and DetailsView to display Master-Detail data. Similarly, developers have used pop-ups to depict similar scenarios where a user clicks on a ‘master’ row and the details are displayed in a pop-up window. I was recently exploring the ModalPopup extender control which allows a page to display content to the user in a "modal" manner. I thought of trying out the Master-Details scenario using the ModalPopup Extender. This article discusses how to do so read more...

Add a comment add a comment | category: | Views: 140
tags: , , | tag it

16
kicks
published 11 days, 14 hours ago, submitted by crpietschmann crpietschmann 13 days, 23 hours ago

dotnetcurry.com — In this article, we will see how to pass javascript values on postback and then access these values in your server side code. This article will primarily showcase two techniques of doing so. One using Hidden variables and the other using the __doPostBack() javascript method. read more...

Add a comment 1 comment | category: | Views: 306
tags: , , , , | tag it

11
kicks
published 14 days, 20 hours ago, submitted by vivekamar vivekamar 16 days, 16 hours ago

dotnetcurry.com — In our projects, we often have a requirement of accessing Cross Domain Services in Silverlight. There are certain steps to be followed to able to do so. But what if the service is hosted in a console application or a windows service? In this article, we will follow a step by step approach and discuss how to create and consume a WCF Service hosted in a console application using Silverlight. We will also explore how to provide a Policy File at a given URI using REST. read more...

Add a comment add a comment | category: | Views: 99
tags: , , | tag it

16
kicks
published 17 days, 15 hours ago, submitted by vivekamar vivekamar 19 days, 11 hours ago

dotnetcurry.com — Spice Up Your Ad Reports - Using the ASP.NET Repeater Control to Group Data and Add Totals The Repeater control is truly amazing. Being template driven, it gives you a lot of flexibility to manipulate and render the final output. In this article, we will exploit this flexibility of the ASP.NET Repeater and build a sample to demonstrate how to use the templates to group and display data. We will also use a little code to ‘total’/sum up our data and display it on the fly. read more...

Add a comment add a comment | category: | Views: 232
tags: , , | tag it

11
kicks
published 1 month, 3 days ago, submitted by vivekamar vivekamar 1 month, 4 days ago

dotnetcurry.com — This article discusses how to create a simple progress bar in Silverlight 2 Beta 2 that can be integrated easily into your projects. In this article, we will see how to download a .zip file and display the progress of the download using a progress bar. We will also read the contents of the .zip file. read more...

Add a comment add a comment | category: | Views: 153
tags: , , | tag it

8
kicks
published 1 month, 6 days ago, submitted by vivekamar vivekamar 1 month, 8 days ago

dotnetcurry.com — In this short article, we will take a look at how to randomly reorder an arraylist and update the contents of the ComboBox at runtime, each time the contents of the ArrayList changes. By default, If your control is bound to a data source that does not implement the IBindingList interface, such as an ArrayList then changes to the list will NOT reflect as changes in the combobox. We will see a workaround in this article to achieve the same. read more...

Add a comment add a comment | category: | Views: 118
tags: , , | tag it

17
kicks
published 1 month, 12 days ago, submitted by vivekamar vivekamar 1 month, 12 days ago

dotnetcurry.com — ASP.NET validation controls provide an easy-to-use but powerful mechanism of ensuring that data is entered correctly on the forms. There are 6 validation controls included in the ASP.NET 2.0 and ASP.NET 3.5 versions.In this article, we will see some 'very handy' tips and tricks that can be applied to the validation controls in our projects read more...

Add a comment add a comment | category: | Views: 265
tags: , , | tag it

15
kicks
published 1 month, 17 days ago, submitted by vivekamar vivekamar 1 month, 17 days ago

dotnetcurry.com — Retrieving and displaying images in a GridView is a time consuming task. If done synchronously, this task can at times test the user’s patience. One way to provide a good user experience is to load the images asynchronously. So when the GridView loads, we initially display a default image for the user to view, while the actual images are being loaded from the database. In this article, we will see how to do so. read more...

Add a comment add a comment | category: | Views: 191
tags: , | tag it

18
kicks
published 1 month, 18 days ago, submitted by crpietschmann crpietschmann 1 month, 20 days ago

dotnetcurry.com — In the previous article, 30 Common String Operations in C# and VB.NET – Part I, we explored 15 common String operations while working with the String class. In Part II of the article, we will continue with the series and cover 15 more. read more...

Add a comment add a comment | category: | Views: 389
tags: , , , , | tag it

20
kicks
published 1 month, 20 days ago, submitted by vivekamar vivekamar 1 month, 20 days ago

dotnetcurry.com — The ASP.NET Configuration API provides support for encrypting and decrypting configuration sections in web.config. This feature comes extremely handy when you need to hide sensitive information like passwords. In this article, we will explore how to encrypt and decrypt sections of the web.config. read more...

Add a comment add a comment | category: | Views: 225
tags: , | tag it

15
kicks
published 1 month, 21 days ago, submitted by crpietschmann crpietschmann 1 month, 23 days ago

hanselman.com — I've done a lot of HttpHandlers that generate images. It's usually pretty tedious. When I was working banking, I wrote an example HttpHandler that would take two Check Images (back and front) and composite them into a single image on the server side, then serving up the composite. Usually you're messing around in with MemoryStreams and Images, and then you serialize the result out to the Response.OutputStream, making sure the MIME Types are set appropriately. If you're really clever, you'll remember to do some client-side and appropriate caching, but I rarely see that in the wild. read more...

Add a comment add a comment | category: | Views: 157
tags: , , , | tag it

29
kicks
published 1 month, 20 days ago, submitted by vivekamar vivekamar 1 month, 24 days ago

dotnetcurry.com — This article compiles some common String operations that we encounter while working with the String class. In Part I, 15 common string operations have been covered . read more...

Add a comment add a comment | category: | Views: 612
tags: , , , , | tag it

16
kicks
published 1 month, 26 days ago, submitted by vivekamar vivekamar 1 month, 27 days ago

dotnetcurry.com — This article explains how to transfer values between the Parent page and a Pop-up window. The code has been tested against IE7 and Firefox. read more...

Add a comment add a comment | category: | Views: 293
tags: , | tag it

16
kicks
published 2 months, 1 day ago, submitted by vivekamar vivekamar 2 months, 3 days ago

dotnetcurry.com — In this writing, I have tried to sum up some important links and points related to the Visual Studio 2008 Service Pack 1 (SP1) release. read more...

Add a comment 1 comment | category: | Views: 428
tags: , | tag it

3
kicks
submitted by vivekamar vivekamar 2 months, 6 days ago

fly2.ws — The article discusses 27 tips and tricks that you can use while using the GridView control. The tips and tricks have been divided in 3 parts. read more...

Add a comment add a comment | category: | Views: 20
tags: , | tag it

3
kicks
submitted by vivekamar vivekamar 2 months, 8 days ago

dotnetcurry.com — The ASP.NET AJAX Interview Questions contains the most frequently asked questions in ASP.NET AJAX. These lists of questions will gauge your familiarity with the ASP.NET AJAX platform. read more...

Add a comment add a comment | category: | Views: 21
tags: , | tag it

 

Sponsored Link: www.carlist.ie

Search:

Ads via The Lounge