TimeSheet

Reply

Join Date: Aug 2007
Posts: 4
Reputation: trafmore is an unknown quantity at this point 
Solved Threads: 0
trafmore trafmore is offline Offline
Newbie Poster

TimeSheet

 
0
  #1
Aug 8th, 2007
I have created this table and is accessing it via an aspx web form. I would like to know if it possible to update the table sending the update data to a different table in the database. If Yes how do I accomplish that?
Trafmore



CREATE TABLE dbo.TimeSheet(
dt SMALLDATETIME PRIMARY KEY CLUSTERED,
isWeekDay AS CONVERT(BIT, CASE
WHEN DATEPART(dw, dt) IN (1,7) THEN 0
ELSE 1 END),
Hours_On_Duty VarChar DEFAULT 10.0,
UnpaidOT VarChar,
PaidOT VarChar,
Admin VarChar DEFAULT 10.0,
Court VarChar,
INSTR VarChar,
STDNT varChar,
COMM_SERV VarChar,
VICT_SERV VarChar,
Remarks varChar
);
GO

DECLARE @dt SMALLDATETIME;
SET @dt = '20070101';
WHILE @dt<= '20071231'
BEGIN
INSERT dbo.TimeSheet(dt) SELECT @dt;
SET @dt = @dt + 1;
END
Reply With Quote Quick reply to this message  
Join Date: Oct 2008
Posts: 2
Reputation: johnshedlock is an unknown quantity at this point 
Solved Threads: 0
johnshedlock johnshedlock is offline Offline
Newbie Poster

Re: TimeSheet

 
0
  #2
Oct 8th, 2008
You could try Pacific Timesheet. Great product and user iterface. Support iPhone, time clock, online ASP, etc.

http://www.pacifictimesheet.com

<a href="http://www.pacifictimesheet.com">Pacific Timesheet - Web Time Tracking Software</a>

John
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Similar Threads
Other Threads in the ASP Forum
Thread Tools Search this Thread



Tag cloud for ASP
About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC