blah blah blah is here! blah blah » Close

0
votes
2 answers

Why out of range exception comes?

sanjib
226

Here is my code: When the Update button is clicked, a RowUpdating event is raised. Generate its event handler : [code]// Update row protected void grid_RowUpdating(object sender, GridViewUpdateEventArgs e) { // Retrieve updated d ...

1
votes
1 answers

Sorting in Gridview

sanjib
226

I wanted to show datas in a GridView in reverse order. Uasually after inserting a data into database, the gridview shows it from the first one and the last one comes at the last. I want to see the latest/last one first, like something happ ...

0
votes
2 answers

Which Model should I follow?

sanjib
226

In an article by Scott Mitchel I read this line: [b]When working with data one option is to embed the data-specific logic directly into the presentation layer (in a web application, the ASP.NET pages make up the presentation layer). This m ...

Feedback