Tagged Questions
The datasourcecontrol tag has no wiki summary.
5
votes
8answers
226 views
Is it really professional to use the data source controls in ASP.NET?
I'm in the process of learning ASP.NET. I bought some books on the subject.
All of them suggest that using the data source controls, like ObjectDataSource/SqlDataSource etc. are the way to go. Now, ...
1
vote
2answers
194 views
Sorting & Grouping in a Repeater
In ASP.NET Can we achieve both grouping and sorting in a repeater control.
If possible please suggest me the way of doing it or links ..
I have to implement that in my application
Thank You.
0
votes
0answers
20 views
Why DataSource controls doesn't have a way to bind query parameters to DataGridView rows
Why? I have a gridview and an objectdatasource with many commands like select update and delete. so I want to set the parameters to the values of the grid row that is being edited.
I know that I can ...
0
votes
1answer
491 views
Inheriting from DataSourceControl does not produce an IDataSource
I am trying to create a custom datasource control.
I have been following this article to the letter (I think...).
I have a skeleton / basic implementation of my datasource, however when I declare it ...
0
votes
3answers
576 views
Update with Data Source Control in asp.net
How do you run an update query in a data source control from a button? I have the data source control with the update query configured in it. I just don't know what to put in the button_click event ...