right i had this one and this is fixed by getting rid of the underscore after the name.
Currently i am getting TargetInvocationException from the line ProjectList.DataBind();
Line 40 on the TimeEntry.aspx.cs page if any one else has this problem please let me know.
I get the feeling that its not finding the database, but i know the database has been installed because i was able to
create a user through asp.net configuration web interface however i still don't know how to access the database records through sql express, i can see the tables field names but i don't know how to get a view of the records noramally in sql enterprise u
would just right click and choose run but i can't figure out how to do this.
hmm i just downloaded the thing and the architecture looks interesting.
there is a lots of problems with this build, which i understood was written for beta2 (?)
after manually correcting the datahelper signature and the path to the template (Unrecognized ~\TimeTracker1\master - corrected to folder ~\TimeTracker)
i got :
Error 1 Text should not be specified between the opening and closing tags for the 'fieldset' element. d:\mes documents\visual studio 2005\WebSites\TimeTracker1\TimeTracker\TimeEntry.aspx 7 14 d:\...\TimeTracker1\
Error 3 The values permitted for this attribute do not include 'middle'. d:\mes documents\visual studio 2005\WebSites\TimeTracker1\TimeTracker\Calendar.aspx 41 40 d:\...\TimeTracker1\
all references involving ~\Timetracker1 fail (404), ie :
corrected the "_" after the signature, now only template problem remains :
Error 1 The file '/GestionDuTemps/GestionDuTemps/MasterPage.master' does not exist. D:\Mes documents\Visual Studio 2005\WebSites\GestionDuTemps\TimeTracker\User_Create.aspx 1
"GestionDuTemps" is the name i gave to the project , which seems incorrectly doubled when converting from physical name (correct) to virtual name (incorrect)
Double clicked vsi file
Went to File>New website, changed language dropdown to the same as the starter kit, double clicked Time Tracker template
In the solution explorer:
In App_Code\Dal folder opened DataAccessHelper.cs, changed public class DataAccessHelper_ to public class DataAccessHelper
Changed the folder named TimeTracker to TimeTracker1
Opened web.sitemap replaced all ~/TimeTracker/ with ~/TimeTracker1/
Opened web.config added "User Instance=True;" to the connection strings, both look like the one below
Build it, run it, go to /TimeTracker1/TimeTracker1/user_create.aspx and add a new user, password must be more than 7 chars with at least 1 non alphanumeric char
travis basco...
Member
15 Points
3 Posts
Has anyone Had success getting this timeTracker installed and working Properly?
Apr 22, 2005 10:09 PM|LINK
Jeff.aspx
Participant
1412 Points
253 Posts
Microsoft
Re: Has anyone Had success getting this timeTracker installed and working Properly?
Apr 25, 2005 09:30 AM|LINK
Program Manager
ASP.net
bbirches
Member
45 Points
9 Posts
Re: Has anyone Had success getting this timeTracker installed and working Properly?
Apr 25, 2005 04:46 PM|LINK
travis basco...
Member
15 Points
3 Posts
Re: Has anyone Had success getting this timeTracker installed and working Properly?
Apr 26, 2005 02:50 AM|LINK
right i had this one and this is fixed by getting rid of the underscore after the name.
travis basco...
Member
15 Points
3 Posts
Re: Has anyone Had success getting this timeTracker installed and working Properly?
Apr 26, 2005 02:52 AM|LINK
right i had this one and this is fixed by getting rid of the underscore after the name.
Currently i am getting TargetInvocationException from the line ProjectList.DataBind();
Line 40 on the TimeEntry.aspx.cs page if any one else has this problem please let me know.
I get the feeling that its not finding the database, but i know the database has been installed because i was able to
create a user through asp.net configuration web interface however i still don't know how to access the database records through sql express, i can see the tables field names but i don't know how to get a view of the records noramally in sql enterprise u would just right click and choose run but i can't figure out how to do this.
Lebanni
Member
20 Points
4 Posts
Re: Has anyone Had success getting this timeTracker installed and working Properly?
May 23, 2005 02:29 PM|LINK
hmm i just downloaded the thing and the architecture looks interesting.
there is a lots of problems with this build, which i understood was written for beta2 (?)
after manually correcting the datahelper signature and the path to the template (Unrecognized ~\TimeTracker1\master - corrected to folder ~\TimeTracker)
i got :
Error 1 Text should not be specified between the opening and closing tags for the 'fieldset' element. d:\mes documents\visual studio 2005\WebSites\TimeTracker1\TimeTracker\TimeEntry.aspx 7 14 d:\...\TimeTracker1\
Error 3 The values permitted for this attribute do not include 'middle'. d:\mes documents\visual studio 2005\WebSites\TimeTracker1\TimeTracker\Calendar.aspx 41 40 d:\...\TimeTracker1\
all references involving ~\Timetracker1 fail (404), ie :
Response.Redirect("~/TimeTracker1/TimeEntry.aspx");
apparently there's something definitly not right with the paths when the template is instanciated .... :(
stuck here (can't reach the aspx pages ;)
Lebanni
Member
20 Points
4 Posts
Re: Has anyone Had success getting this timeTracker installed and working Properly?
May 23, 2005 02:51 PM|LINK
second try, fresh install.
corrected the "_" after the signature, now only template problem remains :
Error 1 The file '/GestionDuTemps/GestionDuTemps/MasterPage.master' does not exist. D:\Mes documents\Visual Studio 2005\WebSites\GestionDuTemps\TimeTracker\User_Create.aspx 1
the @page directive for this error is :
<%
@ Page Language="C#" MasterPageFile="~/GestionDuTemps/MasterPage.master" CodeFile="User_Create.aspx.cs""GestionDuTemps" is the name i gave to the project , which seems incorrectly doubled when converting from physical name (correct) to virtual name (incorrect)
any help appreciated :D
brad1213
Member
20 Points
4 Posts
Re: Has anyone Had success getting this timeTracker installed and working Properly?
May 25, 2005 08:45 AM|LINK
This is what I did to get it going
Double clicked vsi file
Went to File>New website, changed language dropdown to the same as the starter kit, double clicked Time Tracker template
In the solution explorer:
connectionString="Data Source=.\SQLExpress;Integrated Security=True;User Instance=True;AttachDBFilename=|DataDirectory|aspnetdb.mdf;"/>
Build it, run it, go to /TimeTracker1/TimeTracker1/user_create.aspx and add a new user, password must be more than 7 chars with at least 1 non alphanumeric char
On Win2000 sp4 had to enable Shared Memory in the SQL Native Client Configuration, to allow SQL Express to install
see http://www.dotnetfun.com/articles/sql/sql2005/SQL2005Beta2SetupxFFFFFFFFError.aspx
Lebanni
Member
20 Points
4 Posts
Re: Has anyone Had success getting this timeTracker installed and working Properly?
May 25, 2005 02:53 PM|LINK
bogartL.E.
Member
5 Points
1 Post
Re: Has anyone Had success getting this timeTracker installed and working Properly?
Jun 02, 2005 03:35 PM|LINK
bo