david7777777777
Programmer
Disclaimer: I am not asking for anyone to write my code for me, I am seeking only advice, opinions, and hopefully a learned lesson or two I can avoid. I can dream....
I'm working with a MS-SQL 2000 database on Windows 2000 Server and building an ASP.Net application using Visual Studio .Net. This application will be used by our employees to enter client - to - employee relationships. Basically the employees in each department will enter every client (customer) they work with and list each employee who is responsible for working with each client.
The database:
tblClients
ClientID (PK)
tblClientTeams
TeamID (PK)
ClientID
TeamMember1
TeamMember2
TeamMember3
I know that each client team will have exactly 1 client and 3 employees: no problem. But each department has a different number of these client teams that need to be entered via a web form.
Here's my problem: I need to figure out how to dynamically provide a user-defined number of [input textboxes] when the employees go to enter the client team info for their department, since each department has a different number of entries to make. I looked at how UPS provides 5 additional textboxes for tracking multiple packages but I couldn't find any helpful info in their client-side code, obviously.
I hope I've explained this sufficiently. I'm just looking for someone to point me in the right direction, whether that is a website resource, some logical process thoughts, a question, or a good slap upside the head. Thanks.
I'm working with a MS-SQL 2000 database on Windows 2000 Server and building an ASP.Net application using Visual Studio .Net. This application will be used by our employees to enter client - to - employee relationships. Basically the employees in each department will enter every client (customer) they work with and list each employee who is responsible for working with each client.
The database:
tblClients
ClientID (PK)
tblClientTeams
TeamID (PK)
ClientID
TeamMember1
TeamMember2
TeamMember3
I know that each client team will have exactly 1 client and 3 employees: no problem. But each department has a different number of these client teams that need to be entered via a web form.
Here's my problem: I need to figure out how to dynamically provide a user-defined number of [input textboxes] when the employees go to enter the client team info for their department, since each department has a different number of entries to make. I looked at how UPS provides 5 additional textboxes for tracking multiple packages but I couldn't find any helpful info in their client-side code, obviously.
I hope I've explained this sufficiently. I'm just looking for someone to point me in the right direction, whether that is a website resource, some logical process thoughts, a question, or a good slap upside the head. Thanks.