Godaddy
Name: Godaddy
Score: 3,346.03
Last Seen: 5 days, 10 hours, 18 minutes ago
Member Since: 20 September, 2009
Servefault.com
atom rss
5
votes

DropDownList GridView and SelectedIndexChanged

published 118 days, 17 hours, 1 minute ago posted by pons_saravananpons_saravanan 124 days, 5 hours, 20 minutes ago
Thursday, November 12, 2009 4:29:38 AM GMT Friday, November 06, 2009 4:11:05 PM GMT
Using a DropDownList inside a GridViewDropdowns are one of the most used basic controls just like a textbox. This article explains how to have a DropDownList inside a GridView. Basically the dropdowns have the AutoPostBack property to have a PostBack while selecting items. This can happen in GridView also, and can be implemented like in this article easilyDropDownList in MarkupDropdown can be added to the mark up with the help of template columns. I usally keep the dropdown in the EditItemTemplate. But f... (more)
category: ASP.NET | clicked: 0 | comment | | source: www.vbknowledgebase.com
4
votes

GridView Serial Number using RowIndex

posted by pons_saravananpons_saravanan 124 days, 5 hours, 21 minutes ago
Friday, November 06, 2009 4:10:16 PM GMT
Display Serial Number in GridView using RowIndexSome times we need to display a Serial Number in a GridView to identify each row. We can use RowIndex property of the GridView row to show serial number column.There are few ways to do this. The method i explained in source code will work with any datasource. Thats why i purposely used a collection based datasource. If you are using DataTable you can do like this (more)
category: ASP.NET | clicked: 0 | comment | | source: www.vbknowledgebase.com
4
votes

GridView Custom Paging Using ObjectDataSource

posted by pons_saravananpons_saravanan 124 days, 5 hours, 22 minutes ago
Friday, November 06, 2009 4:08:58 PM GMT
GridView Custom Paging(Pagination) Using ObjectDataSourceHave you ever wondered how to present some large data (more than 10,000 rows) in the GridView? That?s where the GridView Paging comes to be helpful. Actually Paging enables the user to show data page by page. Tough GridView and normal DataTable Binding allows paging, natively DataTable binding will not allow fetching page by page out of the box.How Custom Paging(Pagination) can be enabled in GridViewAs I said earlier the Custom Paging cannot be ena... (more)
category: ASP.NET | clicked: 0 | comment | | source: www.vbknowledgebase.com
3
votes

Adding checkbox column to GridView dynamically

posted by pons_saravananpons_saravanan 124 days, 5 hours, 22 minutes ago
Friday, November 06, 2009 4:09:06 PM GMT
Adding checkbox column to GridView at runtime dynamicallyEven there are various ways to add check boxes to the GridView, the following way I am going to explain is very neat and may not simple if it is used in only one place but consider reusing it. It actually reduces a lot of duplication inside the code.Adding Checkbox Column at design time to GridViewWhile adding Checkbox column at design time is easier and you can attach attributes to the Checkbox directly at markup. There are times the Checkbox has ... (more)
category: ASP.NET | clicked: 1 | comment | | source: www.vbknowledgebase.com
3
votes

Freeze GridView Columns and Headers in ASP.Net CSS

posted by pons_saravananpons_saravanan 124 days, 5 hours, 22 minutes ago
Friday, November 06, 2009 4:09:12 PM GMT
Using CSS to freeze GridView Columns and Headers in ASP.NetWhen working in large spreadsheet in excel I used to freeze the columns(including First Column) and rows. This is very useful when you want to compare the values in one column with other column values. And regarding header I always freeze it otherwise it is very hard to find what the values are referring to.Like spreadsheet the GridView as well displaying the data in the tabular format. But unfortunately there is no support for this freezing func... (more)
category: ASP.NET | clicked: 0 | comment | | source: www.vbknowledgebase.com
4
votes

Adding HyperLink Column to GridView dynamically

posted by pons_saravananpons_saravanan 124 days, 5 hours, 22 minutes ago
Friday, November 06, 2009 4:09:26 PM GMT
Adding HyperLink column to GridView at runtime dynamicallyEven there are various ways to add HyperLink to GridView, the following way I am going to explain is very clean and reusable. However may not simple if it is used in only one place. While considering its reusablity. It actually reduces a lot of duplication inside the code.Adding HyperLink Column at design time to the GridViewWhile adding HyperLink column at design time is easier and you can attach attributes to the HyperLink directly at markup. Th... (more)
category: ASP.NET | clicked: 1 | comment | | source: www.vbknowledgebase.com
4
votes

Visual Basic Calculator Code using Control Arrays

posted by pons_saravananpons_saravanan 124 days, 5 hours, 21 minutes ago
Friday, November 06, 2009 4:09:50 PM GMT
Explaining the use of control arrays using visual basic calculator codeThis article is mainly for the beginners. I am trying to explain the use of Control Arrays with the help of Calculator Sample.I feel control arrays are overlooked in classic visual basic. if the way to implement is understood, it is much useful in reducing the code. Control Arrays can be used in the situations like whenever the need of same controls being used several times in an application. We can make them as an array, and the con... (more)
category: ASP.NET | clicked: 1 | comment | | source: www.vbknowledgebase.com
5
votes

WPF DataGrid Bind DataSet

published 118 days, 17 hours, 1 minute ago posted by pons_saravananpons_saravanan 124 days, 5 hours, 20 minutes ago
Thursday, November 12, 2009 4:29:38 AM GMT Friday, November 06, 2009 4:10:51 PM GMT
DataGrid Bind with DatasetInitially when I looked the WPF Toolbox I couldn?t locate the GridView. So I started looking for some equivalents. The closest to what I need was the ListBox. So I went ahead and used it for my Media Player.Need of separate Toolkit from CodePlexAfter some point of time I have searched for the DataGrid in WPF. I have found the Tool Kit from the CodePlex. Ok now if we need a DataGrid it is not shipped with framework. So we need to download from CodePlex. I have downloaded the bina... (more)
category: ASP.NET | clicked: 1 | comment | | source: www.vbknowledgebase.com
4
votes

Programming with Microsoft Visual Basic Pig Latin

posted by pons_saravananpons_saravanan 124 days, 5 hours, 21 minutes ago
Friday, November 06, 2009 4:09:57 PM GMT
Pig Latin Visual Basic SamplePig Latin is a game which is played by children. Usually to make an impression that, we are speaking in different language. While there are various ways to create pig Latin from English. I just took some simple way to explain how to use string functions. So if something missing related to Pig Latin game, I may not modify, as my intention of this program is to explain string related functions Source CodePublic Class Form1 Private Sub Form1_Load(ByVal sender As System.Objec... (more)
category: ASP.NET | clicked: 0 | comment | | source: www.vbknowledgebase.com
5
votes

JavaScript Ajax Cascading Dropdown

published 118 days, 17 hours, 1 minute ago posted by pons_saravananpons_saravanan 124 days, 5 hours, 20 minutes ago
Thursday, November 12, 2009 4:29:38 AM GMT Friday, November 06, 2009 4:10:38 PM GMT
Using ajaxToolkit for cascading dropdown with Javascript and Asp.NetThere are various ways to get the cascading dropdown in the ASP.net. But the following is highly performance oriented approach. For fetching data the data is transferred from web server to client using web service. So the data transfer between server and client is very minimal. Thus you can experience the cascading very fast for a small to medium size of data.This article needs Ajax Control kit. It needs to be downloaded separately.Once ... (more)
category: ASP.NET | clicked: 0 | comment | | source: www.vbknowledgebase.com
4
votes

Framework Fundamentals - All What Need To Know About .NET | Denis Blog

published 9 days, 3 hours, 36 minutes ago posted by DioNNiSDioNNiS 16 days, 7 hours, 36 minutes ago
Monday, March 01, 2010 5:55:25 PM GMT Monday, February 22, 2010 1:55:31 PM GMT
Recently I came across several articles, which describe questions that can be asked at the interview for a job as a .NET developer. For example: What Great .NET Developers Ought To Know (More .NET Interview Questions), ASP.NET Interview Questions, Tech Interviews and ... But usually these questions are left without answers. I want to start series of articles that will help systematize programmer’s knowledge to prepare for an interview or for an exam. (more)
category: Visual Studio | clicked: 3 | comment | | source: i-liger.com
tags: .Net
4
votes

Some e-books and .NET 4.0 beta exams

published 9 days, 3 hours, 36 minutes ago posted by gpeipmangpeipman 15 days, 12 hours, 24 minutes ago
Monday, March 01, 2010 5:55:25 PM GMT Tuesday, February 23, 2010 9:07:23 AM GMT
Lately I have found some pretty interesting e-books about different technologies and one announcement about .NET Framework 4.0 beta exams. In this posting I will introduce you books I found and first beta exams. (more)
category: Unspecified | clicked: 1 | comment | | source: weblogs.asp.net
tags: .Net 4.0, office, Virtualization, Windows
5
votes

Code Metrics: Measuring LoC in .NET applications

published 9 days, 3 hours, 36 minutes ago posted by gpeipmangpeipman 17 days, 22 hours, 29 minutes ago
Monday, March 01, 2010 5:55:25 PM GMT Saturday, February 20, 2010 11:01:57 PM GMT
My previous posting gave quick overview of code metric called Lines of Code (LoC). In this posting I will introduce you how to measure LoC in Visual Studio projects using Visual Studio Code Analysis and NDepend. (more)
category: ASP.NET | clicked: 0 | comment | | source: weblogs.asp.net
tags: .Net, code metrics, loc, NDepend, Visual Studio
1
votes

Silverlight 4: How to work with Notification API?

posted by GodaddyGodaddy 5 days, 10 hours, 20 minutes ago
Friday, March 05, 2010 11:10:38 AM GMT
Silverlight Notification API is a new feature introduced in Silverlight 4 Beta 1. If you are developing your application using Silverlight & want to show some notification message like Outlook to the user, then you can use this. Remember that, this feature only works out of browser. (more)
category: Silverlight | clicked: 0 | comment | | source: www.dotnetfunda.com
tags: Silverlight
1
votes

TeeBot's .NET Blog: ASP.NET MVC : Injecting & Mocking an IRepository

posted by GodaddyGodaddy 5 days, 10 hours, 22 minutes ago
Friday, March 05, 2010 11:09:17 AM GMT
If you are already familiar with ASP.NET MVC, you have probably seen the repository pattern in a few examples (such as NerdDinner), maybe you even use it in your own app. One of the most frequent way to hot-plug a Repository class into a controller is to use the Strategy Pattern. But while an application evolves, you might want to centrally manage your wiring within a provider, that's what Dependency Injectors are for. However lots of Dependency Injectors - or IoC containers at large - such as Unity ... (more)
category: ASP.NET | clicked: 0 | comment | | source: www.teebot.be
tags: ASP.NET MVC
3
votes

3rd Element Photoshop Tutorials

published 2 days, 6 hours, 53 minutes ago posted by esarantopoulosesarantopoulos 10 days, 6 hours, 36 minutes ago
Monday, March 08, 2010 2:37:38 PM GMT Sunday, February 28, 2010 2:55:02 PM GMT
A screen cast tutorial, explore the power of Photoshop brushes...create your own custom brushes from texture images. (more)
category: Tutorials | clicked: 0 | comment | | source: www.3rdelement.com
tags: brushes, Photoshop, textures
4
votes

Simple pager for ASP.NET MVC

published 9 days, 3 hours, 36 minutes ago posted by gpeipmangpeipman 17 days, 11 hours, 24 minutes ago
Monday, March 01, 2010 5:55:25 PM GMT Sunday, February 21, 2010 10:07:24 AM GMT
I needed simple pager for one of my ASP.NET MVC projects. I mean really simple pager – no new types my code should be aware of, no any other chemistry I don’t really need in early stages. As ASP.NET MVC has nothing to offer I wrote my own really simple pager implementation. Here is what I did. (more)
category: ASP.NET | clicked: 0 | comment | | source: weblogs.asp.net
tags: ASP.NET, MVC, pager
4
votes

Silverlight 4 vs Flex 4: Accessing the Clipboard - Alex van Beek

published 9 days, 3 hours, 36 minutes ago posted by alexbalexb 16 days, 11 hours, 51 minutes ago
Monday, March 01, 2010 5:55:25 PM GMT Monday, February 22, 2010 9:39:54 AM GMT
In this post I’m comparing Flex 4 and Silverlight 4’s clipboard access abilities. Accessing the clipboard should be an interesting comparison, since both Flash 10 and Silverlight 4 take different approaches. I deliberately said "Flash 10" in the previous sentence, because accessing the clipboard in a Flex application is done by using the native Flash 10 ActionScript api and there isn’t any specific Flex code required. (more)
category: Silverlight | clicked: 2 | comment | | source: blogs.infosupport.com
tags: Clipboard, Flash 10, Flex 4, Silverlight 4
3
votes

LogoBee Reduces Logo Design Delivery Time

published 2 days, 6 hours, 53 minutes ago posted by kashifmughalkashifmughal 6 days, 1 hour, 34 minutes ago
Monday, March 08, 2010 2:37:38 PM GMT Thursday, March 04, 2010 7:57:07 PM GMT
To appease growing demand, LogoBee launches new faster turnaround times for initial logo design samples. President of LogoBee Pavel Rokhmanko says they have been receiving a lot of requests for expedited packages. On certain occasions, clients require the logo to be created very quickly. “We wanted to make sure we offer packages that will fit all clients’ needs, even in a time crunch,” he affirms. (more)
category: Unspecified | clicked: 0 | comment | | source: www.tutoriallounge.com
tags: Logo Design, Logo Design Firm, LogoBee
5
votes

40 Latest Trend Vintage and Retro Business Cards

published 35 days, 13 hours, 27 minutes ago posted by kashifmughalkashifmughal 41 days, 5 hours, 19 minutes ago
Wednesday, February 03, 2010 8:04:29 AM GMT Thursday, January 28, 2010 4:11:54 PM GMT
Every company need an identity for advertise his brand and business cards also part of any company identity which will play major role in brand or company marketing and when we follow some latest techniques for our graphic design campaigns them brand looks more attractive as we shown in our today article “40 Latest Trend Vintage and Retro Business Cards”. Here in this beautiful vintage and retro business card designs you may take some design ideas because we specially arrange an well vintage designed sho... (more)
category: Unspecified | clicked: 2 | comment | | source: www.dzinepress.com
tags: Business Card Designs, Corporate Designs, Corporate Identity, Graphic Designs, Retro Business Cards, Vintage Business Cards
Previous 1 2 3 4 5 6 7 8 9 10 ... 17 18 Next