1
vote
How to find checked RadioButton inside Repeater Item?
I'm pretty sure that the only thing you could use LINQ to Objects for here would be to take the conditions from within the foreach loop and move them to a where clause.
RadioButton …
0
votes
ITemplate and DataGrid Column in Codebehind
You can attach an event handler to the DataBinding event of the controls you create in ITemplate.InstantiateIn as in …
2
votes
Multiple DataKeyNames in a GridView
All of the DataKey values will always be passed to the Delete method because the fields named by …
0
votes
How To Divide Gotten Data from A Datatable And Bind Some Of Them To Headertemplate of Datalist
You can use a DataView to get a subset of the data in a DataTable and then bind that to the DataList f …
1
vote
Authorization check using Global.asax
You could use the SqlMembershipProvider (or a custom provider if you're not using MSSQL) and deny unauthenticated users from the entire application except from the login page. This check will be li …
