Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. MarkatTekTips2004

    Dreamweaver vs. Visual Studio - best?

    Kurt, Are you using the DW MX 2004?
  2. MarkatTekTips2004

    Dreamweaver vs. Visual Studio - best?

    Anyone out there using Dreamweaver (MX) instead of relying on VS as the IDE, at least for page layout development? I often find the layout editor in VS lacking and am considering Dreamweaver (and any other suggestions you might have) as an alternative. Any input would be appreciated. Thanks!
  3. MarkatTekTips2004

    Tab control - question

    I am curious if there's any built-in tabstrip control such as the one in Microsoft's currently-unsupported web controls. I've looked at Infragistics' tab control, but I am seeking input from the forum for other suggestions or comments on it. Should I bother with the unsupported control from...
  4. MarkatTekTips2004

    ObjectList - see first element in object?

    Not sure if this will help, but here goes! Here's the code in the aspx page containing the ObjectList mobile web control: *************************** private void frmCheckEmail_Activate(object sender, System.EventArgs e) { ArrayList newmsgs = new ArrayList(); Pop myPop = new Pop()...
  5. MarkatTekTips2004

    ObjectList - see first element in object?

    tried overriding ToString(). This did not work. I tried in the class of objects being inserted into the ArrayList. I tried in the code-behind where the ObjectList mobile web control exists, none worked.
  6. MarkatTekTips2004

    ObjectList - see first element in object?

    I'm using the mobile control "ObjectList" for displaying email messages. I'm forming an ArrayList containing objects having four attributes: to, from, subject, and body. I'm binding the ObjectList to the ArrayList. This works, but the problem is the lines show up blank in the WAP browser...
  7. MarkatTekTips2004

    Getting started - some key issues...

    Starting an ASP.NET project (in C#) and wanted to pose a few questions to those of you with experience of whipping-up solutions. There are a few key areas which are fairly unrelated, but which pose a slight hurdle in my initial thinking of how to put a project together... 1. From what I...
  8. MarkatTekTips2004

    Getting started - key issues...

    Starting an ASP.NET project (in C#) and wanted to pose a few questions to those of you with experience of whipping-up solutions. There are a few key areas which are fairly unrelated, but which pose a slight hurdle in my initial thinking of how to put a project together... 1. From what I...
  9. MarkatTekTips2004

    Setting up DBs - separate or single?

    Definitely helps! Thank you.
  10. MarkatTekTips2004

    SQL Server - PRIMARY KEYS (autoincrement)...

    In SQL Server 2000, I'm looking for input as to how to set up primary keys (PKs). Is it safe to use the IDENTITY feature using AUTOINCREMENT as a setting for a PK, or is it best to generate my own and check for dups? My concern is whether SQL Server at any point will taint the numbers used as...
  11. MarkatTekTips2004

    Setting up DBs - separate or single?

    makes sense and you concur with others I've heard back from. I will go with option 2. next question... what about primary key fields, such as the "clientId" -- is it safe to use the IDENTITY feature using AUTOINCREMENT as a setting for a PK, or is it best to generate my own and check for...
  12. MarkatTekTips2004

    DB design / designation...

    again, thank you for your input. I have posted in the SQL Server forum (didn't know it existed here) and will see what they say. Mark
  13. MarkatTekTips2004

    Setting up DBs - separate or single?

    I'm setting up an ASP.NET application using SQL Server 2000 which will be used by hundreds of clients. Among the tables in the database, each client should only have access to his own records. Here's where I'm stuck... Should I 1. Create a separate database for each client and duplicate...
  14. MarkatTekTips2004

    DB design / designation...

    thanks for your quick reply. you believe a single db would be the best approach. I know this would certainly simplify things from a maintenance perspective. My only real concern was the number of records climbing to several million in any given table this way, vs. using separate DBs would...
  15. MarkatTekTips2004

    DB design / designation...

    I'm setting up an ASP.NET application using SQL Server 2000 which will be used by hundreds of clients. Among the tables in the database, each client should only have access to his own records. Here's where I'm stuck... Should I 1. Create a separate database for each client and duplicate...

Part and Inventory Search

Back
Top