|
|
vivekamar
Stories kicked by vivekamar
|
|
submitted by
vivekamar
5 hours, 28 minutes 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...
|
|
tags:
winforms | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
vivekamar
1 day, 7 hours ago
weblogs.asp.net — If you don't know by now you can reset your web applications and or web sites with a simple change to the web.config. For example you can FTP(if remote or hosted) to your server and edit the web.config by adding a space or removing a space. Basically you want the application your using editing with think something has changed since you touched the document. Save the form after this has happened and IIS will recycle the application / web site. read more...
add a comment
|
category: ASP.NET | Views: 4
|
|
tags:
ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 1 day, 22 hours ago, submitted by
vivekamar
2 days, 8 hours ago
dotnetcurry.com — ViewState is a Base64 encoded string and is not readable by the human eye. However it is also not difficult to decode the viewstate and view the contents of the viewstate when it is passed over the wire. In this article we will see how to decode and view the contents of a viewstate. read more...
add a comment
|
category: ASP.NET | Views: 196
|
|
tags:
ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 3 days, 19 hours ago, submitted by
vivekamar
4 days, 6 hours 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
|
category: ASP.NET | Views: 238
|
|
tags:
dotnetcurry.com, dotnetcurry, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
vivekamar
5 days, 10 hours ago
nikhilk.net — Silverlight provides the ability to completely customize the look and feel of controls (including the intrinsic ones - often something one desires when working with HTML), while preserving their behavior, through a combination of styles, templates, visual states and transitions read more...
add a comment
|
category: Silverlight | Views: 3
|
|
tags:
Silverlight | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 4 days, 16 hours ago, submitted by
vivekamar
5 days, 10 hours ago
nikhilk.net — FxCop is a great tool to help ensure consistency of .NET code and to help push quality upstream in the development process by reinforcing design guidelines and flagging some potential issues that can be detected through static analysis of your assemblies read more...
add a comment
|
category: AJAX | Views: 137
|
|
tags:
AJAX | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 4 days, 19 hours ago, submitted by
vivekamar
5 days, 10 hours ago
dotnetcurry.com — In this article we will see how easy it is to use recursion and clear values of all controls on a page using ASP.NET and JavaScript
read more...
add a comment
|
category: ASP.NET | Views: 143
|
|
tags:
ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 5 days, 19 hours ago, submitted by
vivekamar
6 days, 9 hours ago
dotnetcurry.com — If you have missed on some top articles of Visual Studio Team System (VSTS) and Team Foundation Server (TFS) on dotnetcurry.com, then this is a must read for you. The Top 10 articles have been decided by our editorial panel based on the popularity of the article, user rating and top views of the articles.
read more...
add a comment
|
category: Team System | Views: 261
|
|
tags:
TeamSystem, dotnetcurry.com | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 8 days, 19 hours ago, submitted by
vivekamar
8 days, 22 hours ago
dotnetcurry.com — A comprehensive list of 'good' ASP.NET AJAX, ASP.NET and .NET Framework questions for beginners and experienced people. Also a good read for people who want to refresh their memory with .NET concepts or take interviews on a regular basis.
read more...
add a comment
|
category: ASP.NET | Views: 523
|
|
tags:
ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 9 days, 19 hours ago, submitted by
vivekamar
10 days, 3 hours 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
|
category: ASP.NET | Views: 170
|
|
tags:
dotnetcurry, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 11 days, 19 hours ago, submitted by
dwhittaker
11 days, 23 hours ago
dimecasts.net — A short screencast on getting starting with StructureMap -- Simple Setup Scenarios (v2.5) read more...
add a comment
|
category: C# | Views: 205
|
|
tags:
C# | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 11 days, 3 hours ago, submitted by
crpietschmann
12 days, 12 hours 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
|
category: CLR | Views: 366
|
|
tags:
string, Tips, VB.NET, dotnetcurry, .Net | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 12 days, 17 hours ago, submitted by
vivekamar
13 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
|
category: ASP.NET | Views: 212
|
|
tags:
dotnetcurry, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 14 days, 1 hour ago, submitted by
crpietschmann
16 days, 8 hours 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
|
category: ASP.NET | Views: 141
|
|
tags:
httphandler, Image, ASP.NET, dotnetcurry | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 13 days ago, submitted by
vivekamar
17 days, 4 hours 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
|
category: Tips & Tricks | Views: 581
|
|
tags:
string, Tips, VB.NET, .Net, C# | tag it
Everyones tags: | Your tags: | |
|
|
|
|

Sponsored Link: www.carlist.ie
Ads via The Lounge
|