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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by jaybuffet

  1. jaybuffet

    Outgoing mail goes to junk mail

    We have Exchange 2000 and all outgoing mail goes to the Junk mail folder in hotmail and yahoo. MIME-Version: 1.0 Received: from exchangeServerName.domainA.com ([NAT IP Address]) by mc3-f41.hotmail.com with Microsoft SMTPSVC(5.0.2195.6824); Tue, 3 Aug 2004 14:31:18 -0700 Received: from...
  2. jaybuffet

    Outlook/OWA redirects to old exchange server... not new

    They are both Exchange 2000.. ones a dieing box though
  3. jaybuffet

    Outlook/OWA redirects to old exchange server... not new

    I think I may have solved it. Don't know if it was the right way or not... but used ADSIEdit to edit the users properties... attributes homeMDB, homeMTS, and msExchHomeServerName needed to be updated to the new server. I'm assuming thats what the ISAPI filer uses.
  4. jaybuffet

    Outlook/OWA redirects to old exchange server... not new

    Ok.. so I've been thrown into network admin position. Old exchange was dieing (hard drives crashing.. etc..). They had no backups or anything. Exchange services hung on the Starting state. This box is also DC. So created a new DC, installed Exchange, copied over the edb/stm files, ran...
  5. jaybuffet

    Server.CreateObject in C#

    Not working so well for me. i do the following Type type1 = Type.GetType("obj"); object tmp = Server.CreateObject(type1); tmp.a = 1; doesn't work. It says 'object' does not contain a definition for 'a'
  6. jaybuffet

    Server.CreateObject in C#

    So where would the "objType" come in. The string from request.form["objType"] I mean.
  7. jaybuffet

    Server.CreateObject in C#

    I could do that, but I'm trying to avoid the whole conditional thing. So I will have an architecture established and when I want to add a component, all i have to do is create a .cs class file and add a row in the database (my web menu's come from the database dynamically, so I would add a row...
  8. jaybuffet

    Server.CreateObject in C#

    Another class file in the solution
  9. jaybuffet

    Server.CreateObject in C#

    In VBScript I could do Set obj = Server.CreateObject("ns." + request.form("obj")) response.write(obj.doSomething()) where request.form("obj") would change depending on what page I am on. When I try to do the same thing in Visual Studio, it won't compile saying...
  10. jaybuffet

    SQL statement help on poorly designed database

    That would work., but I was looking for more of a dynamic solution since there could be up to 15 columns
  11. jaybuffet

    SQL statement help on poorly designed database

    I am working on a site that is in production, so I can't change the tables. The way it is nowI have 3 tables. 1. tblNumbers num --- 1 2 3 2. tblImpacts num a b c ---------------------- 1 1 0 1 2 0 1 1 3 1 1 1 3. tblImpactDecode...
  12. jaybuffet

    Grouping data based on weeks

    I need a query or SP that groups data by week. tblNum Date Number ------------------ 1/1/03 5 1/3/03 7 1/7/03 2 2/3/03 1 2/5/03 6 etc... And I want to convert that to week Total ------------------------ 1/1/03 - 1/7/03 14...
  13. jaybuffet

    Stored procedure to return table?

    That would work potentially, but b1,b2,b3 are dynamic and can be any amount of columns up to 20
  14. jaybuffet

    Stored procedure to return table?

    Is there a SQL statement or a Stored Procedure that what return the following: I have a table num text text2 ---------------------- 1 a1 b1 5 a1 b2 8 a1 b3 2 a2 b1 4 a2 b2 And I want the results to be name b1...

Part and Inventory Search

Back
Top