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 wOOdy-Soft 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 pwel

  1. pwel

    HttpWebResponse - GetResponse() returning a 500 error, but pages ok?

    Hi All, I have been trying to write a small web application that retreives a list of URL's from a database, and checks each one for a valid response. My code works well, but for some reason a lot of the urls that end in .asp, or .aspx are returning a (500) Internal Server Error when the pages...
  2. pwel

    Closing a Child Window ??

    Hi All, How can i do this? I have a page that pops up another window, fine! I target the parent page from an href in the child window, fine! What I would like to do is, when I click the href in the child window, which opens new content in the parent window, is to close the child window! I...
  3. pwel

    SQL Server - Table Permissions

    Hi, Is there any way, using asp, that I can test whether a user has permissions on a certain table in an SQL Server db. I.E. Before i do a select on (myTable) I wish to check that the current user has permissions to select from (myTable)? Cheers in advance. PW. Paul Welding Web Developer
  4. pwel

    Accessing SQL Server Login accounts via ASP

    Hi, I wish to validate user entered details (username,password) from a web form, against an SQL Server Login account? Can I do this? I would usually create a table of users in the database, and use those details to validate a login, but I have a requirement to only use SQL Server login...
  5. pwel

    STARNGE DIVISION PROBLEM

    DDDDDDOOOOOOOGGGGGHHHHHHHHHHH !!! Sorted it now, all it was: - 54.00 / 100.00 You have to provide the fractional part, else it gets truncated. Cheers anyway. Paul Welding Web Developer
  6. pwel

    STARNGE DIVISION PROBLEM

    Hi, I have a simple division statement in a stored procedure that just keeps returning 0???? I have a temp variable @temp2 decimal(18,2) All I am trying to do is a simple division. select @temp2 = (54/100) Which should retuen 0.54, but it refuses to work, i just keep getting 0.00 Any...
  7. pwel

    ACT! Database and ASP

    Does anyone know if it is possible to read/write to an ACT! database using ASP? And if so, any examples / links? Cheers in advance. Paul. Paul Welding Web Developer
  8. pwel

    SQL Server & Interbase

    Hi All, Are there any known issues running Interbase alongside SQL Server 2000 (on the same box)? I need to do some testing with an Interbase db, and will have to install Interbase on the same box as my SQL Server setup. Cheers in advance. Paul. Paul Welding Web Developer
  9. pwel

    Help Communicating Between Open Windows

    Startway...... You are a star!!!! This is how I eventually did it: - <script language=&quot;Javascript&quot;> function closePopup(){ if (!opener.document.location.href == &quot;summaryPrint.asp&quot;){ var t = setTimeout(&quot;closePopup()&quot;, 500); }else{ window.close()...
  10. pwel

    Help Communicating Between Open Windows

    Hi All, Here is one for you. I have a page (page1.asp) which contains a form. When the form button is clicked two things happen. 1) The form data is validated using ASP 2) A popup window is launched on the onClick event of the form button. When the validation is done, the ASP redirects to...
  11. pwel

    How do I validate a form Field as a Valid Date??

    Hi all, I need to validate a form field is a valid date!! How do I do this? Is there an IsDate() method, or something similar? Cheers in advance. Paul W. Paul Welding Web Developer
  12. pwel

    How do I test a Session has Timed out????

    snowboardr, I set a session variable, Session(&quot;userLoggedIn&quot;) = &quot;no&quot; in the global.asa so it was set when the session starts. Once the user has been authenticated, I set the variable to = &quot;yes&quot; from my pages. I then test for it at the start of each page, if the...
  13. pwel

    How do I test a Session has Timed out????

    Cheers guys, I set a variable in the global.asa and tested for it having a vaild value in my pages, works a treat. Cheers again. Paul. Paul Welding Web Developer
  14. pwel

    How do I test a Session has Timed out????

    Hi all, I need to be able to test if a Session has timeout out, to prevent an error ocurring. Cheers in advance, Paul. Paul Welding Web Developer
  15. pwel

    How do i display a return value from SQL Server???

    Cheers sjravee.... Paul Welding Web Developer

Part and Inventory Search

Back
Top