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 gkittelson 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. mjm917

    Users Cannot Access My Site

    All - Turns out, the problem was not related so much to SP1 as it was to a recent DB migration -- SQL 2k to SQL 2k5. The DB migration was performed prior to the SP1 upgrade and was uneventful or so I thought. Turns out that when restoring the backup during the migration, the parent My Site...
  2. mjm917

    Users Cannot Access My Site

    Recently, my organization upgraded to MOSS SP1. The upgrade went smoothly and I thought all was well. Until... after a few days -- I don't know why -- users started receiving login prompts when trying to access their My Site by clicking the My Site link...
  3. mjm917

    Dynamically Add / Remove HTML table Row Server Side

    I am working on a project where I need to dynamically add & remove table rows serverside. I amd new to Asp.net and would appreciate any help / guidance as I did not come up with anything when I searched the forum or web. I have done this before using javascript but my client doesn't want it...
  4. mjm917

    User control check for (external) control existence

    Everyone - After taking a break, I came back to this with a clear head... and a solution. lbl = Page.FindControl("LabelOutsideTheUserControl") as Label; if (lbl != null) { lbl.Text = ""; } Thought I would post this in case anyone out there is looking for answer as well MJM
  5. mjm917

    User control check for (external) control existence

    I am in the process of converting some mark-up & code into a user control. In the original code, a label was being set to display some instructions to the user. This label will exist outside of the user control. How do I refer to it in the uc code? I tried to check for existence using ...

Part and Inventory Search

Back
Top