| Queries on related tables with ADO.net (2 replies) |
| ASPFriends.com 'aspngdata' list |
| Hi, We have just moved beyond the world of flat tables with a survey application that has 3 tables that are related as such: QuestionTable QuestionID QuestionName AnswersTable QuestionID UserID UsersAnswer The problem is that I now need to do things to this data and am having problems thinking about the data and reporting on it as the queries will be no doubt a bit more complex. Also we have needs... |
|
| Datagrid Edit Template Column (3 replies) |
| ASPFriends.com 'aspngdata' list |
| Hi All, I want to attach a confirmation dialog with a delete link in the datagrid. ItemTemplate asp:LinkButton id "cmdDel" Text "Delete" CommandName "Delete" Runat "server" /asp:LinkButton /ItemTemplate EditItemTemplate asp:LinkButton id "cmdDel2" Text "Delete" CommandName "Delete" Runat "server" /asp:LinkButton /EditItemTemplate I did it using the ItemDataBound event of the datagrid. lnkDelete (L... |
|
| bind data to dropdown list (2 replies) |
| ASPFriends.com 'aspngdata' list |
| Moved from [ngfx oracle] to [aspngdata] by Tim Musschoot Tim.musschoot@rug.ac.be Can someone help me understand why this code produces 6 rows of: option value "System.Data.DataRowView" System.Data.DataRowView /option instead of the actual values I'm looking for? The number of these returned appears to reflect the actual number of records in the expected recordset, but this isn't what I wanted to s... |
|
| Create Adapter From Strongly Typed DataSet (2 replies) |
| ASPFriends.com 'aspngdata' list |
| I have a strongly typed, heirarchal dataset that I want to update thru an adapter. Is there an easy way to generate an adapter or class that can do that? Andy Smith Keyboard Jockey #3a7 2.78.1 |
|
| Persisting datasets using viewstates and xml (still get error) (2 replies) |
| ASPFriends.com 'aspngdata' list |
| Moved from [aspngdatagridrepeaterdatalist] to [aspngdata] by Devin dmrader@sseinc.com If I change the code to that below, I still get the following error for the assignment statement ds.ReadXml(sr); Value null was found where an instance of an object was required ************** ds new DataSet(); if (ViewState["Hello"] null) { oleDa.Fill(ds, "customers"); string myXml ds.GetXml(); //put xml from da... |
|
| Dyanamic HTML out of a Database (2 replies) |
| ASPFriends.com 'aspngdata' list |
| We have a subscription service that reads html stored in a table for things (email content) such as Welcome Messages, Opt Out, Passwords, etc., and I need to be able to dynamically insert things such as the users email address etc. when I send it. I have already gone down the path of just putting made up fields in the html like: [[usersemail]] and doing a replace on it when I am formatting the ema... |
|