On report.aspx, there is a dataset (tdsReportRetrieval), which has a table (tableReportRetrieval) that has a column (DisplayName) that I need to bind to a DataList (Sounds like that elementary song).
My questions are:
1) DisplayName is a field that shows the report names and a user can click on that report, which will navigate the user to ShowReport.aspx and open that report up. So do I need to add a hyperlink to the ItemTemplate?
2) What code do I have to add to the html page of report.aspx to have the above working?
3) I added this code in report.aspx.vb to bind the datasource to the dataset. Is it sufficient?
An example or a link to a site that does this would be very helpful.
Thanks.
My questions are:
1) DisplayName is a field that shows the report names and a user can click on that report, which will navigate the user to ShowReport.aspx and open that report up. So do I need to add a hyperlink to the ItemTemplate?
2) What code do I have to add to the html page of report.aspx to have the above working?
3) I added this code in report.aspx.vb to bind the datasource to the dataset. Is it sufficient?
Code:
DataList1.DataSource = tdsReportRetrieval.Tables(0).Columns("DisplayName")
DataList1.DataBind()
An example or a link to a site that does this would be very helpful.
Thanks.