私はRepeater
それにいくつかのデータをバインドしています。今私の問題は、リピーターのラベルにあるデータをjavascript
. 私のコードは次のとおりです。
コードビハインド
protected void Page_Load(object sender, EventArgs e)
{
// bool boolfound = false;
string connstring = String.Format("Server=localhost; Port=5432; User Id=postgres; Password=database; Database=valletta;");
using (NpgsqlConnection conn = new NpgsqlConnection(connstring))
{
try
{
conn.Open();
NpgsqlCommand cmd = new NpgsqlCommand("select get_points('temp_intersect', 'point','id',17339)", conn);
NpgsqlDataReader dr = cmd.ExecuteReader();
currentpoint.DataSource = dr;
currentpoint.DataBind();
}
catch (Exception)
{
ClientScript.RegisterStartupScript(this.GetType(), "", "$(document).ready(function(){alert('problem with connection')});", true);
}
}
}
ASP
<asp:Repeater ID="currentpoint" runat="server">
<ItemTemplate>
<div>
<asp:Label ID="hiddenlabel" runat="server" Text='<%# Eval("get_points")%>' Visible="false">
</asp:Label>
</div>
</ItemTemplate>
</asp:Repeater>