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 Ricjd

  1. Ricjd

    Checking dates

    Is there a short way I can checks dates, so that dates like 30/02/2004 are excluded? I know is ASP you can use IsDate(somedate). Thanking you in advance Rick
  2. Ricjd

    session.getAttribute problems

    Hey Thnaks for that you've just saved me from failing my uni course. now i think about it, it seems easy. thanks again.
  3. Ricjd

    session.getAttribute problems

    I have some code which see if a session attribute has a value, but it is throwing up a "NullPointerException" error. My code is below. //problems with this String testLang = (String)session.getAttribute("lang"); if (testLang.equals(null)) { session.setAttribute("lang", "English")...
  4. Ricjd

    arrays and recordset

    Could anyone tell me if there is an easy way to put a recordset into an array. I'm sure there is an easier way than going through the whole recordset. Thanking you in advance Rick
  5. Ricjd

    Dynamic Include

    Bummer, I thought that might be the case. I was wishing for a more compact way... Ah well I guess it will have to do. Thanx sedj.
  6. Ricjd

    Dynamic Include

    OK here's some pusedo code, but please keep in mind that i have no idea how this is done in JSP so this might lead you more astray <% String myFilename = pageNameThatHasBeenPassed; %> <HTML> <HEAD> <TITLE> Main Page </TITLE> </HEAD> <BODY> /*code for menu */ <%@ include file=myFilename %>...
  7. Ricjd

    Dynamic Include

    No i want the generic code in one file, and then include the none generic code into that one, depending on ehich parameters have been passed to the page.
  8. Ricjd

    Dynamic Include

    Hey I would like to have just one single JSP page with the menus and banners on, but then the content to be added in through an 'include' statment, or something to that effect. I would like to know how to do this through passing a parameter of the page i want to include and then using that to...
  9. Ricjd

    jsp page reuse

    grega Could you explain this to me in more detail or send me to a web page which would, as this is exactly what I need. Thanking you in advance Rick
  10. Ricjd

    ASP execute in JSP

    I ahve some ASP code which depending on the varibles will load up a page. <% server.execute &quot;content/&quot; & Lang & &quot;/&quot; & Page & &quot;.asp&quot;%> For example if Lang = &quot;Eng&quot; and Page + &quot;Home&quot; it would load up the english version of the home page. but I...
  11. Ricjd

    Selecting a folder

    I have generated a file name for a document and i know how to save it, but now i want to be able to select the folder where it is to be save to. Is there an easy way to present the user with a folder list which they then select. Hopefully somehting windows intragrated so they can create new...
  12. Ricjd

    finding files

    Thanx Steve I have gone with the FileScripting object. Cheers again Rick
  13. Ricjd

    finding files

    I need a simple solution to find certian files. I need to find all the files with the word &quot;test&quot; in the file name. It needs to look in the folder &quot;d:/test/&quot; and all it's sub folders. Once the files are founds I need the location and file name displayed in a list. If...
  14. Ricjd

    Sharepoint Team Services links

    We are using Sharepoint team services, not portal, and we want the links to open up in a new window when clicked. I have searched the web for an answer to this and only been able to find answers regarding portal. I was wondering if anybody has come across this problem and found a solution...
  15. Ricjd

    Configuration of ISA

    test

Part and Inventory Search

Back
Top