Stories recently tagged with 'dotnetcurry'

6 Tips for Working with the ASP.NET AJAX Accordion Control (dotnetcurry.com)

submitted by vivekamarvivekamar(5940) 3 years, 3 months ago

Here are 6 tips that could help you out in your projects while dealing with ASP.NET AJAX Accordion Control. read more...

add a comment |category: |Views: 235

tags: another

Display Master-Detail Data with the ModalPopup Extender and GridView (dotnetcurry.com)

submitted by vivekamarvivekamar(5940) 3 years, 4 months ago

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 |category: |Views: 437

tags: another

Access JavaScript variables on PostBack using ASP.NET Code(dotnetcurry.com)

submitted by crpietschmanncrpietschmann(11.3k) 3 years, 4 months ago

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...

1 comment |category: |Views: 571

tags: another

Using Silverlight to Access a WCF Service Hosted In a Console App(dotnetcurry.com)

submitted by vivekamarvivekamar(5940) 3 years, 4 months ago

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 |category: |Views: 181

tags: another

Using the ASP.NET Repeater Control to Group Data and Add Totals(dotnetcurry.com)

submitted by vivekamarvivekamar(5940) 3 years, 4 months ago

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 |category: |Views: 1605

tags: another

Create a Simple Progress Bar Control In Silverlight 2(dotnetcurry.com)

submitted by vivekamarvivekamar(5940) 3 years, 5 months ago

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 |category: |Views: 259

tags: another

Randomly reorder an ArrayList and update ComboBox contents at runtime(dotnetcurry.com)

submitted by vivekamarvivekamar(5940) 3 years, 5 months ago

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 |category: |Views: 150

tags: another

ASP.NET Validation Controls – Important Points, Tips and Tricks (dotnetcurry.com)

submitted by vivekamarvivekamar(5940) 3 years, 5 months ago

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 |category: |Views: 288

tags: another

Loading Images Asynchronously Inside an ASP.NET GridView (dotnetcurry.com)

submitted by vivekamarvivekamar(5940) 3 years, 5 months ago

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 |category: |Views: 352

tags: another

30 Common String Operations in C# and VB.NET – Part II(dotnetcurry.com)

submitted by crpietschmanncrpietschmann(11.3k) 3 years, 5 months ago

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 |category: |Views: 456

tags: another

Programmatically Encrypt Decrypt Configuration Sections in web.config(dotnetcurry.com)

submitted by vivekamarvivekamar(5940) 3 years, 5 months ago

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 |category: |Views: 279

tags: another

ASP.NET Futures: Generating Dynamic Images w/ HttpHandlers Gets Easier(hanselman.com)

submitted by crpietschmanncrpietschmann(11.3k) 3 years, 5 months ago

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 |category: |Views: 236

tags: another

30 Common String Operations in C# and VB.NET – Part I (dotnetcurry.com)

submitted by vivekamarvivekamar(5940) 3 years, 5 months ago

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 |category: |Views: 947

tags: another

Open popup windows in IE/Firefox and return values using ASP.NET(dotnetcurry.com)

submitted by vivekamarvivekamar(5940) 3 years, 5 months ago

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 |category: |Views: 345

tags: another

Microsoft Releases Visual Studio 2008 Service Pack 1 (SP1) (dotnetcurry.com)

submitted by vivekamarvivekamar(5940) 3 years, 6 months ago

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...

1 comment |category: |Views: 436

tags: another

27 GridView Tips and Tricks an ASP.NET Developer Must Know(fly2.ws)

submitted by vivekamarvivekamar(5940) 3 years, 6 months ago

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 |category: |Views: 77

tags: another