- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
全部。我有一个小编码问题,希望您能帮助我。我正在为我的工作制作一个秒表计时器。我的老板想为公司制定一个程序,以帮助跟踪员工分配任务的时间。有人告诉我应该使用我从未使用过的 asp.net 来制作它。我设法让计时器在一定程度上工作,除了保存 session 外,它完成了它应该做的一切。我需要做的最后一件事是让计时器在用户关闭窗口或重新加载页面时仍然滴答作响。我认为最好的方法是使用 cookie。除了在重新加载时不保存计时器值之外, View 状态本身工作正常。如果我在选项卡中打开一个新页面,一切都会重新开始。我发现了如何制作 cookies ,但我认为我没有正确使用它们。如果有人能帮我解决这个问题,我将不胜感激。
这是 aspx 代码(我在那里有一些 javascript,因为我正在尝试以这种方式实现计时器,以便它更准确,所以请忽略它):
<%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="NerdcoreTimer._Default" %>
<asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent">
<script type="text/javascript">
var seconds = 0;
var minutes = 0;
var hours = 0;
var tick;
function stopCount() {
clearTimeout(t);
}
function startCount() {
document.getElementById('seconds').innerHTML = seconds;
document.getElementById('minutes').innerHTML = minutes;
document.getElementById('hours').innerHTML = hours;
seconds = seconds + 1;
if (seconds == 60) {
seconds = 0;
minutes = minutes + 1;
}
if (minutes == 60) {
minutes = 0;
hours = hours + 1;
}
tick = setTimeout("startCount()", 1000)
}
function reset() {
seconds = 0;
minutes = 0;
hours = 0;
document.getElementById('seconds').innerHTML = seconds;
document.getElementById('minutes').innerHTML = minutes;
document.getElementById('hours').innerHTML = hours;
}
function startTimer() { return $find('Timer1')._startTimer(); }
function stopTimer() { return $find('Timer1')._stopTimer(); }
</script>
<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>
<div>
<table align="center">
<tr>
<td>
<asp:DropDownList ID="Tasks" runat="server" Width="75px">
<asp:ListItem>Task 1</asp:ListItem>
<asp:ListItem>Task 2</asp:ListItem>
<asp:ListItem>Task 3</asp:ListItem>
<asp:ListItem>Task 4</asp:ListItem>
<asp:ListItem>Task 5</asp:ListItem>
<asp:ListItem>Task 6</asp:ListItem>
</asp:DropDownList>
</td>
<td style="text-align:center">
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:Timer ID="Timer1" runat="server" Enabled="false" Interval="879" OnTick="Timer1_Tick"></asp:Timer>
<asp:Label ID="hour2" runat="server" Text="0"></asp:Label>
<asp:Label ID="hour1" runat="server" Text="0"></asp:Label>
<asp:Label ID="colon1" runat="server" Text=":"></asp:Label>
<asp:Label ID="min2" runat="server" Text="0"></asp:Label>
<asp:Label ID="min1" runat="server" Text="0"></asp:Label>
<asp:Label ID="colon2" runat="server" Text=":"></asp:Label>
<asp:Label ID="sec2" runat="server" Text="0"></asp:Label>
<asp:Label ID="sec1" runat="server" Text="0"></asp:Label>
</ContentTemplate>
</asp:UpdatePanel>
</td>
<td>
<asp:Button ID="Start" runat="server" OnClientClick="startTimer()" Text="Start" Width="75px" OnClick="Start_Click" />
</td>
</tr>
<tr>
<td> </td>
<td>
<asp:Button ID="Stop" runat="server" OnClientClick="stopTimer()" Text="Stop" Width="75px" OnClick="Stop_Click" />
<asp:Button ID="Reset" runat="server" Text="Reset" Width="75px" OnClick="Reset_Click" />
</td>
</tr>
</table>
</div>
 
<div>
<table align="center">
<tr>
<td style="text-align:center">
<asp:UpdatePanel ID="UpdatePanel2" runat="server">
<ContentTemplate>
<asp:Label ID="startDate" runat="server" Text="Start Date: "></asp:Label>
<asp:Label ID="startTime" runat="server" Text=""></asp:Label>
<hr />
<asp:Label ID="stopDate" runat="server" Text="Stop Date: "></asp:Label>
<asp:Label ID="stopTime" runat="server" Text=""></asp:Label>
<hr />
</ContentTemplate>
</asp:UpdatePanel>
</td>
</tr>
</table>
</div>
 
<div>
<table align="center">
<tr>
<td style="text-align:center">
<asp:UpdatePanel ID="UpdatePanel3" runat="server">
<ContentTemplate>
<asp:Label ID="hours" runat="server" ></asp:Label>
<asp:Label ID="minutes" runat="server" ></asp:Label>
<asp:Label ID="seconds" runat="server" ></asp:Label>
</ContentTemplate>
</asp:UpdatePanel>
</td>
<td>
<asp:UpdatePanel ID="UpdatePanel4" runat="server">
<ContentTemplate>
<asp:Button ID="Button1" runat="server" OnClientClick="startCount()" Text="Start" Width="75px"/>
</ContentTemplate>
</asp:UpdatePanel>
</td>
</tr>
<tr>
<td> </td>
<td>
<asp:UpdatePanel ID="UpdatePanel5" runat="server">
<ContentTemplate>
<asp:Button ID="Button2" runat="server" OnClientClick="stopCount()" Text="Stop" Width="75px"/>
<asp:Button ID="Button3" runat="server" OnClientClick="reset()" Text="Reset" Width="75px"/>
</ContentTemplate>
</asp:UpdatePanel>
</td>
</tr>
</table>
</div>
using System;
using System.Data.SqlClient;
using System.Configuration;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Timers;
namespace NerdcoreTimer
{
public partial class _Default : System.Web.UI.Page
{
public int time_sec;
public int time_min;
public int time_hour;
public string start;
public string stop;
HttpCookie cookieStartDate = new HttpCookie("startDate");
HttpCookie cookieTask = new HttpCookie("task");
HttpCookie cookieSec = new HttpCookie("seconds");
HttpCookie cookieMin = new HttpCookie("minutes");
HttpCookie cookieHr = new HttpCookie("hours");
HttpCookie cookieStopDate = new HttpCookie("stopDate");
//SQL connection string
System.Data.SqlClient.SqlConnection sqlConnection1 =
new System.Data.SqlClient.SqlConnection("Server=*****;Database=*****;User Id=*****;Password=*****;");
protected void Page_Load(object sender, EventArgs e)
{
//Check to see if there are cookies
if (Request.QueryString["startDate"] != null)
{
ReadCookie_StartDate();
}
if ((Request.QueryString["seconds"] != null) && (Request.QueryString["minutes"] != null) && (Request.QueryString["hours"] != null))
{
ReadCookie_Timer();
//If the cookie values for seconds, minutes, and hours is not null, enable the timer and disable and enable the proper controls
Timer1.Enabled = true;
Stop.Enabled = true;
Start.Enabled = false;
Tasks.Enabled = false;
}
if (Request.QueryString["stopDate"] != null)
{
ReadCookie_StopDate();
}
//Open the sql connection
sqlConnection1.Open();
//Disable these controls on page load
Stop.Enabled = false;
Reset.Enabled = false;
//Make sure the timer is disabled if starting a new session
if (!IsPostBack)
{
Timer1.Enabled = false;
}
}
protected void ReadCookie_StartDate()
{
//Get the cookie names
String strCookieStart = Request.QueryString["startDate"].ToString();
String strCookieTask = Request.QueryString["task"].ToString();
//Grab the cookies
HttpCookie cookieStart = Request.Cookies[strCookieStart];
HttpCookie cookieTask = Request.Cookies[strCookieTask];
//Check to make sure the cookies exist
if ((cookieStart != null)&&(cookieTask != null))
{
String strCookieStartValue = cookieStart.Value.ToString();
startTime.Text = strCookieStartValue;
String strCookieTaskValue = cookieTask.Value.ToString();
Tasks.SelectedValue = strCookieTaskValue;
}
}
protected void ReadCookie_Timer()
{
//Get the cookie names
String strCookieSec = Request.QueryString["seconds"].ToString();
String strCookieMin = Request.QueryString["minutes"].ToString();
String strCookieHr = Request.QueryString["hours"].ToString();
//Grab the cookies
HttpCookie cookieSec = Request.Cookies[strCookieSec];
HttpCookie cookieMin = Request.Cookies[strCookieMin];
HttpCookie cookieHr = Request.Cookies[strCookieHr];
//Check to make sure the cookies exist
if ((cookieSec != null)&&(cookieMin != null)&&(cookieHr != null))
{
String strCookieSecValue = cookieSec.Value.ToString();
String strCookieMinValue = cookieMin.Value.ToString();
String strCookieHrValue = cookieHr.Value.ToString();
sec1.Text = strCookieSecValue;
min1.Text = strCookieMinValue;
hour1.Text = strCookieHrValue;
}
}
protected void ReadCookie_StopDate()
{
//Get the cookie name
String strCookieStop = Request.QueryString["stopDate"].ToString();
//Grab the cookie
HttpCookie cookieStop = Request.Cookies[strCookieStop];
//Check to make sure the cookie exists
if (cookieStop != null)
{
String strCookieStopValue = cookieStop.Value.ToString();
stopTime.Text = strCookieStopValue;
}
}
protected void Start_Click(object sender, EventArgs e)
{
//Start the timer
Timer1.Enabled = true;
//Get the start date
start = DateTime.Now.ToString();
if (startTime.Text == "")
{
startTime.Text = start;
}
//Store the start date in a cookie
Start_Session();
//Enable these controls
Stop.Enabled = true;
//Disable these controls
Start.Enabled = false;
Tasks.Enabled = false;
Reset.Enabled = false;
}
protected void Timer1_Tick(object sender, EventArgs e)
{
//Add to the sec1 label
time_sec = int.Parse(sec1.Text);
time_sec = time_sec + 1;
sec1.Text = time_sec.ToString();
//Hide the sec2 label
if (sec1.Text == "10")
{
sec2.Visible = false;
}
//Add to the min1 label
if (sec1.Text == "60")
{
sec2.Visible = true;
time_min = int.Parse(min1.Text);
sec1.Text = "0";
time_min = time_min + 1;
min1.Text = time_min.ToString();
}
//Hide the min1 label
if (min1.Text == "10")
{
min2.Visible = false;
}
//Add to the hour1 label
if (min1.Text == "60")
{
min2.Visible = true;
time_hour = int.Parse(hour1.Text);
min1.Text = "0";
time_hour = time_hour + 1;
hour1.Text = time_hour.ToString();
}
//Hide the hour2 label
if (hour1.Text == "10")
{
hour2.Visible = false;
}
//Store the sec1, min1, and hour1 values into cookies
TimerTick_Session();
}
protected void Stop_Click(object sender, EventArgs e)
{
//Get the stop date
stop = DateTime.Now.ToString();
stopTime.Text = stop;
//Store the stop date in a cookie
Stop_Session();
//Disable the timer and this control
Timer1.Enabled = false;
Stop.Enabled = false;
//Enable these controls
Start.Enabled = true;
Reset.Enabled = true;
//Store the selected task, start date, stop date and totalTime
string tsk = Tasks.SelectedValue;
string dateStart = startTime.Text;
string dateStop = stopTime.Text;
//Create a sql query string
string sqlString = "INSERT TimeSheet (Task,DateStart,DateStop) VALUES (@Task,@DateStart,@DateStop)";
//Create a sql command using the query string
System.Data.SqlClient.SqlCommand cmd = new System.Data.SqlClient.SqlCommand(sqlString);
//Add the selected task value, start date value, stop date and totalTime values to the query
cmd.Parameters.AddWithValue("@Task", tsk);
cmd.Parameters.AddWithValue("@DateStart", dateStart);
cmd.Parameters.AddWithValue("@DateStop", dateStop);
//Give the sql command a connection string
cmd.Connection = sqlConnection1;
//Execute the sql command
cmd.ExecuteNonQuery();
//Close the sql connection
sqlConnection1.Close();
}
protected void Reset_Click(object sender, EventArgs e)
{
//Clear the start and stop date labels
startTime.Text = "";
stopTime.Text = "";
//Reset these counters
time_sec = 0;
time_min = 0;
time_hour = 0;
//Reset the timer labels
sec1.Text = "0";
min1.Text = "0";
hour1.Text = "0";
//Make visible these timer labels
sec2.Visible = true;
min2.Visible = true;
hour2.Visible = true;
//Disable the timer and these controls
Timer1.Enabled = false;
Reset.Enabled = false;
Stop.Enabled = false;
//Enable these controls
Start.Enabled = true;
Tasks.Enabled = true;
}
protected void Start_Session()
{
//Create a new cookie for the start date and selected task
//HttpCookie cookieStartDate = new HttpCookie("startDate");
//HttpCookie cookieTask = new HttpCookie("task");
//Set the cookie values
cookieStartDate.Value = start;
cookieTask.Value = Tasks.SelectedValue;
//Set the cookie to expire in about 8 hours
DateTime startDateExp = DateTime.Now;
TimeSpan startDateExpMin = new TimeSpan(0, 500, 0);
cookieStartDate.Expires = startDateExp + startDateExpMin;
DateTime taskExp = DateTime.Now;
TimeSpan taskExpMin = new TimeSpan(0, 500, 0);
cookieTask.Expires = taskExp + taskExpMin;
//Add the cookie
Response.Cookies.Add(cookieStartDate);
Response.Cookies.Add(cookieTask);
}
protected void TimerTick_Session()
{
//Create a new cookies for the timer
/*HttpCookie cookieSec = new HttpCookie("seconds");
HttpCookie cookieMin = new HttpCookie("minutes");
HttpCookie cookieHr = new HttpCookie("hours");*/
//Set the cookie values
cookieSec.Value = sec1.Text;
cookieMin.Value = min1.Text;
cookieHr.Value = hour1.Text;
//Set the cookies to expire in about 8 hours
DateTime secExp = DateTime.Now;
TimeSpan secExpMin = new TimeSpan(0, 500, 0);
cookieSec.Expires = secExp + secExpMin;
DateTime minExp = DateTime.Now;
TimeSpan minExpMin = new TimeSpan(0, 500, 0);
cookieMin.Expires = minExp + minExpMin;
DateTime hrExp = DateTime.Now;
TimeSpan hrExpMin = new TimeSpan(0, 500, 0);
cookieHr.Expires = hrExp + hrExpMin;
//Add the cookies
Response.Cookies.Add(cookieSec);
Response.Cookies.Add(cookieMin);
Response.Cookies.Add(cookieHr);
}
protected void Stop_Session()
{
//Create a new cookie for the stop date
//HttpCookie cookieStopDate = new HttpCookie("stopDate");
//Set the cookie value
cookieStopDate.Value = stop;
//Set the cookie to expire in about 8 hours
DateTime stopDateExp = DateTime.Now;
TimeSpan stopDateExpMin = new TimeSpan(0, 500, 0);
cookieStopDate.Expires = stopDateExp + stopDateExpMin;
//Add the cookie
Response.Cookies.Add(cookieStopDate);
}
}
}
最佳答案
我也想快速评论一下数据库处理,因为您可能想考虑从表示层中抽象出数据层,换句话说,考虑创建一个单独的项目或类来处理数据,而不是在同一个地方做所有事情。
此外,您可能已经发现, View 状态会在回发之间保留页面状态,因为它将 session 信息存储在页面上,但如果重新加载,则不再有 View 状态。
除此之外,我很抱歉我读得很快,但您似乎正在尝试重写 microsoft session 处理,寻找 asp.net session 处理。
那是我的 2 美分。
关于asp.net - 如何让 cookie 与 asp.net web 应用程序一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13916363/
我正在通过 labrepl 工作,我看到了一些遵循此模式的代码: ;; Pattern (apply #(apply f %&) coll) ;; Concrete example user=> (a
我从未向应用商店提交过应用,但我会在不久的将来提交。 到目前为止,我对为 iPhone 而非 iPad 进行设计感到很自在。 我了解,通过将通用PAID 应用放到应用商店,客户只需支付一次就可以同时使
我有一个应用程序,它使用不同的 Facebook 应用程序(2 个不同的 AppID)在 Facebook 上发布并显示它是“通过 iPhone”/“通过 iPad”。 当 Facebook 应用程序
我有一个要求,我们必须通过将网站源文件保存在本地 iOS 应用程序中来在 iOS 应用程序 Webview 中运行网站。 Angular 需要服务器来运行应用程序,但由于我们将文件保存在本地,我们无法
所以我有一个单页客户端应用程序。 正常流程: 应用程序 -> OAuth2 服务器 -> 应用程序 我们有自己的 OAuth2 服务器,因此人们可以登录应用程序并获取与用户实体关联的 access_t
假设我有一个安装在用户设备上的 Android 应用程序 A,我的应用程序有一个 AppWidget,我们可以让其他 Android 开发人员在其中以每次安装成本为基础发布他们的应用程序推广广告。因此
Secrets of the JavaScript Ninja中有一个例子它提供了以下代码来绕过 JavaScript 的 Math.min() 函数,该函数需要一个可变长度列表。 Example:
当我分别将数组和对象传递给 function.apply() 时,我得到 NaN 的 o/p,但是当我传递对象和数组时,我得到一个数字。为什么会发生这种情况? 由于数组也被视为对象,为什么我无法使用它
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界. 这篇CFSDN的博客文章ASP转换格林威治时间函数DateDiff()应用由作者收集整理,如果你
我正在将列表传递给 map并且想要返回一个带有合并名称的 data.frame 对象。 例如: library(tidyverse) library(broom) mtcars %>% spl
我有一个非常基本的问题,但我不知道如何实现它:我有一个返回数据框,其中每个工具的返回值是按行排列的: tmp<-as.data.frame(t(data.frame(a=rnorm(250,0,1)
我正在使用我的 FB 应用创建群组并邀请用户加入我的应用群组,第一次一切正常。当我尝试创建另一个组时,出现以下错误: {"(OAuthException - #4009) (#4009) 在有更多用户
我们正在开发一款类似于“会说话的本”应用程序的 child 应用程序。它包含大量用于交互式动画的 JPEG 图像序列。 问题是动画在 iPad Air 上播放正常,但在 iPad 2 上播放缓慢或滞后
我关注 clojure 一段时间了,它的一些功能非常令人兴奋(持久数据结构、函数式方法、不可变状态)。然而,由于我仍在学习,我想了解如何在实际场景中应用,证明其好处,然后演化并应用于更复杂的问题。即,
我开发了一个仅使用挪威语的应用程序。该应用程序不使用本地化,因为它应该仅以一种语言(挪威语)显示。但是,我已在 Info.plist 文件中将“本地化 native 开发区域”设置为“no”。我还使用
读完 Anthony's response 后上a style-related parser question ,我试图说服自己编写单体解析器仍然可以相当紧凑。 所以而不是 reference ::
multicore 库中是否有类似 sapply 的东西?还是我必须 unlist(mclapply(..)) 才能实现这一点? 如果它不存在:推理是什么? 提前致谢,如果这是一个愚蠢的问题,我们深表
我喜欢在窗口中弹出结果,以便更容易查看和查找(例如,它们不会随着控制台继续滚动而丢失)。一种方法是使用 sink() 和 file.show()。例如: y <- rnorm(100); x <- r
我有一个如下所示的 spring mvc Controller @RequestMapping(value="/new", method=RequestMethod.POST) public Stri
我正在阅读 StructureMap关于依赖注入(inject),首先有两部分初始化映射,具体类类型的接口(interface),另一部分只是实例化(请求实例)。 第一部分需要配置和设置,这是在 Bo
我是一名优秀的程序员,十分优秀!