Concatenate datalist variables with javascript and html

  • Thread starter Luis Esteban Valencia
  • Start date
L

Luis Esteban Valencia

Hello I am in big troubles trying to concatenate this
I have a datalist

Private Sub llenardatalistpartidos(ByVal idfase As Int32, ByVal iddeporte As
Int32)

Dim dr As sqldatareader

dr = objconsultas.traerpartidosxfasexdeportedatareader(idfase, iddeporte)

datalistpartidos.DataSource = dr

datalistpartidos.DataBind()

End Sub



I am trying to concatenate in html with javascript



<asp:DataList id="datalistpartidos" runat="server" GridLines="Vertical"
CellPadding="3" BorderWidth="1px"
BorderColor="#999999" BackColor="White" BorderStyle="None">
<SelectedItemStyle Font-Bold="True" ForeColor="White"
BackColor="#008A8C"></SelectedItemStyle>
<AlternatingItemStyle
BackColor="Gainsboro"></AlternatingItemStyle>
<ItemStyle ForeColor="Black" BackColor="#EEEEEE"></ItemStyle>
<ItemTemplate>
<TABLE id="Table6" borderColor="navy" cellSpacing="0"
cellPadding="0" width="300" border="1">
<TR onClick="servOC(""&<%# Container.DataItem("idpartido")%>&"
",""/partidos.aspx?idpartido=""&<%# Container.DataItem("idpartido")%>&"
",'#cad9ea')">
<TD borderColor="#ffffff"><%#
Container.DataItem("nombreequipo1")%></TD>
<TD borderColor="#ffffff"><%#
Container.DataItem("nombreequipo2")%></TD>
<TD borderColor="#ffffff"><%#
Container.DataItem("fecha")%></TD>
<TD borderColor="#ffffff"><%#
Container.DataItem("fechareal")%></TD>
<TD borderColor="#ffffff"><%#
Container.DataItem("horareal")%></TD>
<TD borderColor="#ffffff"></TD>
<TD borderColor="#ffffff"></TD>
</TR>
<TR style="display:none" id=ihtr & <%#
Container.DataItem("idpartido")%>>
<TD borderColor="#ffffff" colSpan="7"><iframe src="" id=ihif &
<%# Container.DataItem("idpartido")%> width="100%"></iframe></TD>
</TR>
</TABLE>
</ItemTemplate>
<FooterStyle ForeColor="Black" BackColor="#CCCCCC"></FooterStyle>
<HeaderStyle Font-Bold="True" ForeColor="White"
BackColor="#000084"></HeaderStyle>
</asp:DataList>

The result has to be something like this



<tr onClick="servOC(1,'/PARTIDOS.ASPX?IDPARTIDO=1','#cad9ea'<tr
style="display:none" id="ihtr1"><td bgcolor="#ECECD9" colspan="9"><iframe
frameborder="0" width="100%" id="ihif1"></iframe></td></tr>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,770
Messages
2,569,586
Members
45,084
Latest member
HansGeorgi

Latest Threads

Top