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 bkrike 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: leahyj
  • Content: Threads
  • Order by date
  1. leahyj

    Restore REPLACE option

    Hi, If I am restoring a user database(that already exists) to a backup server using the latest full backup and transaction logs from the production server, do I use the REPLACE option or not. Thanks
  2. leahyj

    compress/zip sql backups

    Hi, Is it ok to compress/zip a sql backup .bak or .trn file? My concern is regarding corruption or loss of data, etc. Thanks
  3. leahyj

    restore master

    Hi, I have a second sql server, that already has its own system databases, and a few user databases. If I want to restore some user databases from another server, do I need to restore the system databases also(before or after), OR will that make the existing user databases unusable? Thanks
  4. leahyj

    batch ftp

    Hi, I have a batch file that ftps. Here is what it does. 1. It creates a directory listing file of all directories in the current directory. 2. It changes the current directory to each sub directory. 3. It creates a file listing file of all files in the subdirectory. 4. It ftps each file in...
  5. leahyj

    ftp batch question

    Hi, I have a batch file that ftps. Here is what it does. 1. It creates a directory listing file of all directories in the current directory. 2. It changes the current directory to each sub directory. 3. It creates a file listing file of all files in the subdirectory. 4. It ftps each file in...
  6. leahyj

    stored procedure default value for int datatype parameter

    Hi, I want to add a default value to a stored procedure parameter (datatype int), that when executing the stored procedure will grab all rows if that parameter is not passed a value to it. If possible, I don't want to add logic, i.e. If @PassID = NULL, etc. Is there a way to use a wildcard...
  7. leahyj

    Javascript and ASP.Net

    Hello, I am relatively new to asp.net, coming from classic asp background and I need a brief tutorial on the differences of implementing javascript in an asp.net page, compared to the what I am familiar with using classic asp. Any small summation of the differences, if any, would be a jump...
  8. leahyj

    reload issue

    Hi, Interesting problem. I have a page which opens a popup window in which users can type comments, and the popup window closes when the user clicks Save, and the javascript code closes the popup window and reloads the parent page to display the new comment. function refreshPage() {...
  9. leahyj

    onclick Form event

    Hi, I have a form in a page that has quite a few checkboxes, and when a user clicks on a checkbox the Forms onclick envent is triggered. In IE it works, but in Firefox it doesn't work. The event does finally get triggered if the user clicks in an input element, but I want it to trigger when...
  10. leahyj

    global.asa trigger

    Is it true that the global.asa session events are only triggered when the first asp page in the application is loaded? If that is true, that is a shame. Thanks for your knowledge.
  11. leahyj

    POST question

    I have this page that has a security captcha function call generator, but I only want the captcha to change when the page is initally loaded, not when the page does a postback to itself. Is there a way to handle this, outside of using ajax. page code <% dim MyResult MyResult =...
  12. leahyj

    randomize

    Hi, I have an asp function that is called that uses the randomize function, but I only want it to randomize the first time the page is loaded. My problem is that it is randomized after I resubmit the page on a dropdown that reloads the page. How can I get it to just randomize the first time...
  13. leahyj

    document.write issue

    Hi, I have an ASP script that writes a javascript array (works like a charm elsewhere), but this time I am getting an error ("imgsec is not defined"), and not getting the expected results. This is what is written by the ASP: <script type='text/javascript' language='javascript'>imgsec [0] =...
  14. leahyj

    submit form technique

    Hi, I'm trying to take the value of a radio element as the action="blah.url" of a form submital. Any takers. Thanks.
  15. leahyj

    submit form and close parent window

    Hi, What is the best way to submit a form, and then close the window that the form is submitted from. This works in Internet Explorer: <form name="paynow_frm" method="post" target="_blank"action="http://test.asp" onsubmit="javascript:return window.close();paynow_liens();"> but not in...
  16. leahyj

    firefox css error

    Hi, I'm getting this error in firefox using my ccs file. Error in parsing value for property 'background-position'. Declaration dropped. .box_propertyinfo { background-position: fixed; float: right; width: 190px; height: 50px; } .font_propertyinfo { text-transform: capitalize; text-align...
  17. leahyj

    firefox error

    I get a "document.getElementById("CountyList") has no properties" error message in the JavaScript Console in Fire Fox. line error in function: document.getElementById('CountyList').options.length = 0; entire function: function State_Select() { ind =...
  18. leahyj

    dealing with dash in form element name

    Hi, I need to populate a form input element using javascript and the form name has a dash in it. I know that the dash is an illegal character. document.forms.paynow_frm.cde-PropIntID.value = strintids; I don't have any control in changing the name of the form element to remove the dash...
  19. leahyj

    transition page

    Hi, I have an ASP application that works fine, but now I want to add a transition page "Processing Your Request. Please Wait ..." message in between some pages. What is the best ASP method to use? I tried server.execute, and didn't like the results. Thanks in advance.
  20. leahyj

    pass javascript array

    Hi, Can I pass from Asp an multidimensional array to javascript. I had success passing the one dimesional: Response.Write "<script type='text/javascript' language='javascript'>" Response.Write "var liensArr = new Array();" Response.Write "</script>" later on: Response.Write "liensArr" &...

Part and Inventory Search

Back
Top