使用 Asp.net 4.0/C# SQL 2008
我有一个带有gridview 的页面。我需要一个 HH:MM:SS 格式的倒计时时钟,它会倒计时直到它到达到期日期。我的代码正确显示了 gridview 第一行的时钟,但任何其他行都没有执行 javascript 时钟。
出于测试目的,我有一个基本的存储过程,其中包括通用主键、到期日期和当前日期。我调用了一个 javascript 函数,该函数将获取 2 个日期之间的差异并对其进行格式化。 感谢任何帮助我让倒计时时钟计时器出现在gridview的每一行。
当前 SQL 代码:
create proc dbo.tmpdate2 as
begin
select 1 as ElementID, DATEADD(HH,1,GETDATE()) AS ExpDate, getdate() as NowDate
union all
select 2 as ElementID, DATEADD(HH,2,GETDATE()) AS ExpDate, getdate() as NowDate
END
当前 ASPX Gridview 代码:
<asp:GridView ID="GridView1" runat="server" BackColor="White"
BorderColor="#DEDFDE" BorderStyle="None" BorderWidth="1px" CellPadding="4"
ForeColor="Black" GridLines="Vertical">
<AlternatingRowStyle BackColor="White" />
<Columns>
<asp:TemplateField HeaderText="Todays Date">
<ItemTemplate>
<asp:Label ID="Label1" runat="server"><%# Eval("NowDate")%></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Expiration Date">
<ItemTemplate>
<div>
<label id="ElementID"><label>
<script language="javascript" type="text/javascript">
function Countdown(ElementID, ExpDateTimeString, NowDateTimeString) {
var NowDateTime = new Date(NowDateTimeString);
var ExpDateTime = new Date(ExpDateTimeString);
// convert the current date and the target date into miliseconds
var NowDateTimeMS = (NowDateTime).getTime();
var ExpDateTimeMS = (ExpDateTime).getTime();
// find their difference, and convert that into seconds
var TimeLeftSecs = Math.round((ExpDateTimeMS - NowDateTimeMS) / 1000);
if (TimeLeftSecs < 0) {
TimeLeftSecs = 0;
}
var Hours = Math.floor(TimeLeftSecs / (60 * 60));
TimeLeftSecs %= (60 * 60);
var Minutes = Math.floor(TimeLeftSecs / 60);
if (Minutes < 10) {
Minutes = "0" + Minutes;
}
TimeLeftSecs %= 60;
var Seconds = TimeLeftSecs;
if (Seconds < 10) {
Seconds = "0" + Seconds;
}
document.getElementById('ElementID').innerHTML = Hours + ":" + Minutes + ":" + Seconds;
// increment the NowDateTime 1 second
NowDateTimeMS += 1000;
NowDateTime.setTime(NowDateTimeMS);
// recursive call, keeps the clock ticking
var FunctionCall = "Countdown('" + ElementID + "','" + ExpDateTime + "','" + NowDateTime + "');";
setTimeout(FunctionCall, 1000);
}
</script>
<script language="javascript" type="text/javascript">
var NowDateTime = new Date('<%# Eval("NowDate") %>');
var ExpDateTime = new Date('<%# Eval("ExpDate") %>');
var ElementID = "00:00:00";
// recursive call, keeps the clock ticking
var FunctionCall = "Countdown('" + ElementID + "','" + ExpDateTime + "','" + NowDateTime + "');";
setTimeout(FunctionCall, 1000);
</script>
</div>
</ItemTemplate>
</asp:TemplateField>
</Columns>
<FooterStyle BackColor="#CCCC99" />
<HeaderStyle BackColor="#6B696B" Font-Bold="True" ForeColor="White" />
<PagerStyle BackColor="#F7F7DE" ForeColor="Black" HorizontalAlign="Right" />
<RowStyle BackColor="#F7F7DE" />
<SelectedRowStyle BackColor="#CE5D5A" Font-Bold="True" ForeColor="White" />
<SortedAscendingCellStyle BackColor="#FBFBF2" />
<SortedAscendingHeaderStyle BackColor="#848384" />
<SortedDescendingCellStyle BackColor="#EAEAD3" />
<SortedDescendingHeaderStyle BackColor="#575357" />
</asp:GridView>
当前的 ASPX.CS 代码:
protected void Page_Load(object sender, EventArgs e)
{
SqlConnection thisConnection = new SqlConnection(ConfigurationManager.ConnectionStrings["SomeConnectionString2"].ConnectionString);
SqlCommand command = new SqlCommand("tmpdate2", thisConnection);
command.CommandType = CommandType.StoredProcedure;
SqlDataAdapter adapter = new SqlDataAdapter(command);
DataTable table = new DataTable();
adapter.Fill(table);
GridView1.DataSource = table;
GridView1.DataBind();
}