Ask a Question related to ASP.NET General, Design and Development.
-
Todd #1
DataList output is producing a blank table?
I am somewhat new to ASP.NET and I am probably overlooking some basic
rule that's causing my error. Anyways, here's the scoop: I am using
a DataReader to access a SQL stored procedure. I want the result set
from the DataReader to be dumped into a DataList and displayed on the
page. I already know that my data, the stored procedure, and the
database connectivity all work correctly because I have outputted all
this data to a dataGrid control. Now I am trying to output to a
DataList control, and all I get is a blank browser screen. I don't
get any errors. And if I use my mouse to try and "highlight" the
blank browser, I can see that there are some empty rows in a table
structure. Looking at the source code in the browser, I see a table
with 6 empty rows. This would make sense because my query should
produce 6 records to be output. The HTML code is below, I just used
the drag-and-drop editor to insert this DataList control:
<asp:DataList id="dl" runat="server"></asp:DataList>
The code-behind page with the necessary code is here (dl is the
datalist control, dr is the datareader control, cn is the connection):
'the connection string has already been set and is open
Dim cmd4 As New System.Data.SqlClient.SqlCommand("spToddsRateTest" ,
cn)
cmd4.CommandType = CommandType.StoredProcedure
dr = cmd4.ExecuteReader
dl.DataSource = dr
dl.DataBind()
dr.Close()
cn.Close()
Any thoughts as to why this is producing a blank screen with no
errors? The visible property is set to true.
Todd Guest
-
Generating table rows and columns in output?
When I output the query results, I would like to display them in a 4 column table. While I can have it add a column as cell as in... -
Hiding a blank table cell
I have a table which has a number of cells within it which holds information about current work load. The final 2 cells have the invoice number and... -
Producing a CD
I recently produced a CD in Macromedia flash and used a VB custom coded installset to install quicktime and acrobat. Now I want to get away if... -
Blank Paper Output with HP printer
Dear all,I need emergency help I have a confusing problem about Printfrom Lingo command I have Blank output with "HP Laserjet Black and white"... -
GD is producing strange output from TTF fonts
if anyone still interested in a solution: the GD TTF font support "broke" during some build at Activestate.. 2 solutions: 1) build GD yourself for... -
Todd #2
Re: DataList output is producing a blank table?
[email]bacile99@yahoo.com[/email] (Todd) wrote in message news:<eb84a9d1.0307241207.14ffc634@posting.google. com>...
Does anyone have a clue why I am not getting the data to output in my DataList?> I am somewhat new to ASP.NET and I am probably overlooking some basic
> rule that's causing my error. Anyways, here's the scoop: I am using
> a DataReader to access a SQL stored procedure. I want the result set
> from the DataReader to be dumped into a DataList and displayed on the
> page. I already know that my data, the stored procedure, and the
> database connectivity all work correctly because I have outputted all
> this data to a dataGrid control. Now I am trying to output to a
> DataList control, and all I get is a blank browser screen. I don't
> get any errors. And if I use my mouse to try and "highlight" the
> blank browser, I can see that there are some empty rows in a table
> structure. Looking at the source code in the browser, I see a table
> with 6 empty rows. This would make sense because my query should
> produce 6 records to be output. The HTML code is below, I just used
> the drag-and-drop editor to insert this DataList control:
>
> <asp:DataList id="dl" runat="server"></asp:DataList>
>
> The code-behind page with the necessary code is here (dl is the
> datalist control, dr is the datareader control, cn is the connection):
>
> 'the connection string has already been set and is open
> Dim cmd4 As New System.Data.SqlClient.SqlCommand("spToddsRateTest" ,
> cn)
> cmd4.CommandType = CommandType.StoredProcedure
> dr = cmd4.ExecuteReader
> dl.DataSource = dr
> dl.DataBind()
> dr.Close()
> cn.Close()
>
> Any thoughts as to why this is producing a blank screen with no
> errors? The visible property is set to true.
Todd Guest
-
Sonali.NET[MVP] #3
Re: DataList output is producing a blank table?
You'll need to use ItemTemplate Tag
<asp:DataList id="dl" runat="server">
<itemTemplate>
<%#DataBinder.Eval(Container.DataItem, "FieldName")%>
</itemTemplate>
</asp:DataList>
HTH
Regards
Sushila
..NET MVP
"Todd" <bacile99@yahoo.com> wrote in message news:eb84a9d1.0307241207.14ffc634@posting.google.c om...> I am somewhat new to ASP.NET and I am probably overlooking some basic
> rule that's causing my error. Anyways, here's the scoop: I am using
> a DataReader to access a SQL stored procedure. I want the result set
> from the DataReader to be dumped into a DataList and displayed on the
> page. I already know that my data, the stored procedure, and the
> database connectivity all work correctly because I have outputted all
> this data to a dataGrid control. Now I am trying to output to a
> DataList control, and all I get is a blank browser screen. I don't
> get any errors. And if I use my mouse to try and "highlight" the
> blank browser, I can see that there are some empty rows in a table
> structure. Looking at the source code in the browser, I see a table
> with 6 empty rows. This would make sense because my query should
> produce 6 records to be output. The HTML code is below, I just used
> the drag-and-drop editor to insert this DataList control:
>
> <asp:DataList id="dl" runat="server"></asp:DataList>
>
> The code-behind page with the necessary code is here (dl is the
> datalist control, dr is the datareader control, cn is the connection):
>
> 'the connection string has already been set and is open
> Dim cmd4 As New System.Data.SqlClient.SqlCommand("spToddsRateTest" ,
> cn)
> cmd4.CommandType = CommandType.StoredProcedure
> dr = cmd4.ExecuteReader
> dl.DataSource = dr
> dl.DataBind()
> dr.Close()
> cn.Close()
>
> Any thoughts as to why this is producing a blank screen with no
> errors? The visible property is set to true.Sonali.NET[MVP] Guest
-



Reply With Quote


