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 Chriss Miller 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: *

  • Users: Affleck
  • Content: Threads
  • Order by date
  1. Affleck

    Inheriting from another assembly

    Hi all, I am developing a 3 tier .net application using vs.net. On complitation the app will have 4 assemblies: Ntpct.LoanEquipment.BusinessTier.dll Ntpct.LoanEquipment.DataAccessTier.dll Ntpct.LoanEquipment.PresentationTier.dll (web app) Ntpct.Utility.dll the Utility assembly in the Ntpct...
  2. Affleck

    Retrieve Documents from SP using web service

    Hi, does anybody know how to retrieve documents from sharepoint document library using sharepoint webservices and ASP.net? TIA there are 10 types of people in this world those who understand binary, and those who don't.
  3. Affleck

    Aggregate Document Libraries

    Hi, Is there a way to aggregate all document libraries within a sharepoint portal. So that a user can see a total list of all documents including those in sites/ subsites? TIA there are 10 types of people in this world those who understand binary, and those who don't.
  4. Affleck

    Dynamically add multiple controls II

    I have a linkButton that when clicked adds a control to a placeholder control collection. When the user clicks the linkButton one HtmlInputFile control is added, but any subsequent clicks doesn't add any more controls to the placeholder!? I have the following wired to the click event: private...
  5. Affleck

    Dynamically add multiple controls

    Hi, I am trying to create a web form that allows users to upload files. I want to be able to provide the user with a link to add as many FileInput conrols as they need since they may have more than 1 file to upload. I can create a static version of this no problem. I have a linkButton that is...
  6. Affleck

    ANT Install Task Fails

    Hello, I am trying to Hot Deploy a webapp to Tomcat using ant and the tomcat manager tasks. <target name="install" description="Install application in Tomcat" depends="deploywar"> <install url="${tomcat.manager.url}" username="${tomcat.username}" password="${tomcat.password}" path="/"...
  7. Affleck

    Cascading Delete (trigger?)

    Hi again evrybody, im back with another simple question (hopefully) How do I create a trigger so that when a record is deleted from a parent table all related child records are deleted also? Ive done this in the past by enforcing Ref Integrity in Access but im using MS Sql now. Thanks in...
  8. Affleck

    Create Search using Stored Proc.

    Hi again I need more help please, I am creating a search page to search a courses database the search form has 5 fields on it a Keyword Text field and 4 checkboxes. I want the stored procedure to generate a recordset based upon the search criteria set, but I dont want the user to have to enter...
  9. Affleck

    SQL Statement (Easy one!)

    Can anyone tell me why when forming an SQL statement in a stored procedure you have to use the ' + ' and concatenate? eg: I want to create a stored proc that will be used to generate an ASP Recordset from search parameters. Is this OK? (It doesnt seem to work) or should I split the @SQL...
  10. Affleck

    tlbroadbent - Still need help please error converting Varchar to Int

    Ive integrated the code into my SP but im getting errors ( error converting Varchar to Int) and I cant seem to fix them. My SP looks like this now: There maybe an obvious error as Im very new to all this CREATE PROCEDURE spAddCourse --Declare variables to be inserted into 6 tables...
  11. Affleck

    Delimited String to Multiple Records In Stored Proc.

    Hi all I hope someone can help me. I have a stored procedure that inserts data into multiple tables. I am wanting to parse a comma delimited string and insert new records for each element. i.e @year1content = french,german,maths,ecnomics... (from textarea form field)...

Part and Inventory Search

Back
Top