|
|
Stories recently tagged with 'GridView'
|
|
submitted by
arnoldmatusz
11 days, 10 hours ago
blog.dreamlabsolutions.com — Although the ModalPopulExtender isn’t new at all there are still countless poeple who search the web for a comprehensive sample on how a ModalPopupExtender is used in a GridView. It can be pretty tricky to handle so I decided to come up with a good example of most things that you need tot know about it. Hence this blog post is a sample on how you can use the ModalPopupExtender in a GridView coupled with an UpdatePanel. Working with the ModalPopup from a GridView can be a pain, but with a good reference nice results can be yielded. read more...
add a comment
|
category: ASP.NET | Views: 24
|
|
tags:
AjaxControlToolkit, GridView, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
kayos
2 months, 25 days ago
gridviewguy.com — Matt Berseth wrote a very interesting article on “Bulk Inserting Data Using the ListView Control". The idea is to give the user an Excel like interface where they can edit the rows with custom data and finally click the update button to persist the data in the database. Matt’s solution was great but lacks a very important detail. There was no way to know what rows were changed by the user. Matt took the road to update all the rows whether they were changed or not. In this article we are going to take a look at an alternative method of updating only the changed rows. read more...
add a comment
|
category: AJAX | Views: 14
|
|
tags:
GridView, ASP.NET, AJAX | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
brianjlowry
4 months, 4 days ago
lowrymedia.com — "The number of times I have run into the following problem is astounding. I need to bind a list of complex/nested objects (those that contain other objects) to a gridview and show the values of nested objects. For example, let's say I have the following Customer class which contains a State object that holds information about in which state the customer lives." read more...
add a comment
|
category: C# | Views: 28
|
|
tags:
GridView, C# | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
dotnetfunda
4 months, 8 days ago
dotnetfunda.com — In this article, I am going to explain how to manipulate data using GridView control. This article scope is limited to Updating and Deleting records using GridView and I am not using any readymade Data controls for that but manually writing all event methods. I will be using Sql objects directly into methods to keep the example simple and straight forward. In practical scenario you should use your existing architecture to populate and update the data. read more...
add a comment
|
category: ASP.NET | Views: 23
|
|
tags:
GridView, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
emirtrevino
4 months, 10 days ago
emir.com.mx — Entity Framework is the best alternative of Microsoft for mapper a relational database to objects, and is already a very complete support in ASP.NET for populate the GridView control and enable the paging and sorting features directly by LinqDatasource object,but to use this alternative not have the chance to decouple the linq query in a business rules layer separated, which can be a problem if we have those requirements. The paging mut be done in the database for a more efficient query. read more...
add a comment
|
category: Linq | Views: 150
|
|
tags:
GridView, EntityFramework, LINQ | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
vivekamar
4 months, 12 days ago
dotnetcurry.com — The GridView control is quiet a handy control and is the most commonly used control when building an ASP.NET site. The more you work with it, the more you realize how powerful it can be while presenting data. Moving ahead with our GridView Tips and tricks series, I have added some more tips in this article. read more...
add a comment
|
category: ASP.NET | Views: 48
|
|
tags:
Tips, GridView, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
sqlnetframework
6 months, 9 days ago
sqlnetframework.com — Improve the column sorting of the ASP.NET GridView to give the user a better visual experience. Highlight the column selected for sorting and include an image to indicate whether the sorting order is ascending or descending. read more...
add a comment
|
category: ASP.NET | Views: 17
|
|
tags:
GridView, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
crpietschmann
6 months, 22 days ago
mattberseth.com — A while back I wrote a post describing how the DetailsView, GridView, UpdatePanel and the AjaxControlToolkit's ModalPopup controls could be used to implement the common Master/Details UI pattern. I cheated a bit when creating my original example in that I didn't really complete the implementation - the Save button on the popup didn't actually do anything. Since writing that post I have received a lot of email and a number of people left comments asking me to complete the example - so here it is. If you plan on reading through this article, I recommend playing around with the demo site to get a feel for how the page works. All data changes are only persisted to memory, so don't worry about messing up the data set. read more...
add a comment
|
category: AJAX | Views: 173
|
|
tags:
AJAX, DetailsView, ModalPopup, ASP.NET, GridView | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
Edelman
7 months, 17 days ago
dotnetdiscussion.wordpress.com — The GridView is a fantastic, versatile, and powerful tool. Unfortunately, it is also unrealistic in several aspects. Say you have a page in your website's administrative back-end that is to update all of your prices for your products. With a typical GridView, if you wanted to update, say, 10 of these prices, you will require at minimum 20 postbacks, which depending on the speed of your server can be a lengthy process. Now imagine that you have over 1000 lines to edit. 2000 postbacks, minimum... sound like a daunting task that may take you hours in just waiting for your server to respond?
What if I told you that you could edit an unlimited number of records in a GridView with one click, one postback, and one call to your database, and that only the records you modified would be updated? What if I told you it was way, way easier than you think? read more...
add a comment
|
category: ASP.NET | Views: 65
|
|
tags:
GridView, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
spavkov
7 months, 21 days ago
aspdotnetfaq.com — Asp.Net 2.0 GridView control is very powerful control. Developers at Microsoft really did a great job when designing it.
Its like Swiss Army knife for selecting, editing, sorting, paging and displaying data.
Combined with various DataSource controls (ObjectDataSource, SqlDataSource) it helps you execute most of your Read, Update and Delete operations without writing a single line of code.
Off course, nothing is perfect. For example, creating new data is is one common task that is not so simple to accomplish with GridView.
Let see how we can easily insert new rows of data using GridView and SqlDataSource... read more...
add a comment
|
category: ASP.NET | Views: 148
|
|
tags:
faq, Tutorial, GridView, HowTo, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|

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