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. Teamgc

    Menu Using CSS List

    scratch that. I just did this, I don't know why it took me so long! #active a:link, #active a:visited, #active a:hover { background-color:#1111ff; color:#FFFFFF; text-transform:uppercase; text-align: center; padding:2px; padding-right: 72px; border:2px solid white; margin:0...
  2. Teamgc

    Menu Using CSS List

    I have a menu using an unordered list in css (the css and html are below). I now want one of my menu items to look different than the rest to stand out and I have no idea how to do this. Is it possible to create 2 styles for list items in an unordered list? any ideas would be great thanks...
  3. Teamgc

    XSLTProcessor - transformToXML only working on files

    I'm new to XSLTProcessing in PHP and I have a very strange problem. I am getting results back in XML format from a webservice. and when I load them into an XMLDoc and then try to transformToXML I get no results. If I output the result I get from the webservice, copy and paste it into an...
  4. Teamgc

    Unwanted Domain Login appearing

    I have an asp.net website that is hosted on one domain and accessed from another. there is a trust set up between the 2 domains. I have set the directory security to windows integrated. When i navigate to the site a domain login screen appears. I don't want this to appear, any ideas?
  5. Teamgc

    Error loading assembly

    I have an application using Microsoft Application Blocks 3.1 I've just added the logging application block and I get the following error. It only occurs when i try to instantiate a log entry. I have it working in the quick start application without any problems but i can't seem to get it going...
  6. Teamgc

    Windows Intergrated Security over different domains

    I have a site set up on one domain and the users using the site in another. When the users log into the site the user returned is that of the user logged into the server where the site resides. How do I get the user who is using the site? Its an ASP.Net application, I have anonomous access...
  7. Teamgc

    Exceptions acrossed servers

    yes to both questions. I have a function just to throw errors and they are wrapped in faultexceptions of T object and caught as faultexceptions of T object. The issue I have now is (in the below code), when a param gets to DALExecuteDataset it's empty and if I remove the fault contract it's...
  8. Teamgc

    Exceptions acrossed servers

    i've put in a fault contract like so <OperationContract()> _ <FaultContract(GetType(MyFault))> _ Function DALExecuteDataset(ByVal param As DALParameter) As DataSet Now, the param passed in is empty, i remove the fault contract and the param is populated. Is there another field or...
  9. Teamgc

    Exceptions acrossed servers

    i've got a exception class which i reference in my WCF service. So in my DAL i throw an error and catch it as normal. I then "ProcessDataException(ex, "Database Policy")" this puts it into the database and rethrows it. It goes into the database fine, but when i get the exception at the front...
  10. Teamgc

    Exceptions acrossed servers

    the business layer and data access layer are both WCF services on the same server. then the application which is on a different machine uses the business layer which in turn uses the data access layer. if the app and the BOL and DAL are all on the one machine the error messages are correct...
  11. Teamgc

    Exceptions acrossed servers

    I have business object and data access layer on one server, when i use these services from that server I get the correct error messages returned. But when i use this layers from a different machine the correct error is not passed across to the other machine. does anyone have any ideas on this?
  12. Teamgc

    Help needed for using SQLParameter Array in N-tier environment

    It turns out I was trying to be too generic. thanks for the help.
  13. Teamgc

    Help needed for using SQLParameter Array in N-tier environment

    Here's my issue. I have a ProductBOL, A Generic BOL, A DAL My Presentation Layer passes a class to my BOL, which in turn takes this class and using the generic BOL puts it in a form to pass to the DAL. The DAL then puts it into the database. My problem is that my DAL has to use...
  14. Teamgc

    How can I remove a table from a DataSet

    something like this works for me ds.Tables.Remove(ds.Tables(0))
  15. Teamgc

    Help needed for using SQLParameter Array in N-tier environment

    i've added the following class to my DAL Public Class DALParameter Private m_SQL As String Private m_parameter() As String Private m_Datatype as SQLDbtype End Class I populate the class at the front end and get it all the way back to the DAL but I cannot set the Parameter Datatype...
  16. Teamgc

    Help needed for using SQLParameter Array in N-tier environment

    So I should be passing an object. So I should have a data object that the BOL passes to the DAL?
  17. Teamgc

    Help needed for using SQLParameter Array in N-tier environment

    Hi I am working on an n-tier system (WCF Services). I have a Data Access Layer (DAL), Business Object Layer (BOL), a Product Business Object Layer (ProdBOL) which are consumed by my application. I want to pass an array of SQLParameters from my application all the way to the DAL and return a...
  18. Teamgc

    Using VB.Net from a VB.Net application

    I am starting to migrate from VB6 to vb.net and would need both running together, is it possible to create windows forms in .net that i can use and access from a vb6 application? thanks
  19. Teamgc

    Not Receiving Emails from Specific Domains

    Hi everyone, thanks for all your help. What had happened was we transferred the domain from one ISP to another and the original ISP didn't update their zone files so all emails for our domain that hit their servers were trapped there. As they are the biggest ISP in the country that was a big...
  20. Teamgc

    Not Receiving Emails from Specific Domains

    there is nothing appearing in the Queues

Part and Inventory Search

Back
Top