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 strongm 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. maboo59

    prevent caching across the board

    I have a web application with over 20 pages that are used. In each of these pages I include a file to build a toolbar on those pages. If I add the following code to the include file, will this prevent caching for the main page or just the include file? <% Response.Expires = -1...
  2. maboo59

    open/close performance question

    I have a question on what is more efficient when opening and closing database connections(using pooling). I've read that after you have opened a db connection and are then done with it, the close it immediately. Which makes since if you only have to use it once. What if you have a webpage...
  3. maboo59

    RadioButtonList's SelectedIndexChange event

    sunila7, I actually do have it that way, but moved it when i copied it. maboo59
  4. maboo59

    RadioButtonList's SelectedIndexChange event

    I have a RadioButtonList that is created in the .cs file, it only has 2 options in it that is added to a asp:table. I want to be able to show different options on the page based on which radio button they click. All are created dynamically. ArrayList cg = new ArrayList(2)...
  5. maboo59

    javascript 'onClick' event does not fire...

    Rhys666, Does this also apply to RadioButtonList's? Tx maboo59
  6. maboo59

    Disabling item in a checkboxlist

    ca8msm, Thanks alot, that was what I needed. I made some modifications to fit what I need. When user selects a from a dropdownlist and the page submits, I determine which boxes I need to disable and assign to a hidden tag the index of the first box to disable. Then on the aspx side I call the...
  7. maboo59

    Disabling item in a checkboxlist

    How can I disable items in a checkboxlist when page loads in the codebehind? The list is created in the .aspx file and when user selects from a dropdownlist and page is submitted cerainn listitems are disabled based on users selection. But I don't know how to reference the items individually...
  8. maboo59

    Window popup closes on opening 2nd excel file

    kaht, That works but only every other time the page loads. better than nothing. thanks
  9. maboo59

    Window popup closes on opening 2nd excel file

    kaht, I appreciate the help: Here's the important code: <script language=javascript> var newWindow = null; function openExcel() { try { newWindow.focus(); newWindow.close(); newWindow = window.open('excelPage.aspx'); } catch(e) { newWindow =...
  10. maboo59

    Window popup closes on opening 2nd excel file

    Kaht, Now it says 'newWindow is null or not an object' when I add alert(e.message) inside the catch block, and the window doesn't close. maboo69
  11. maboo59

    Window popup closes on opening 2nd excel file

    kaht, I get an error saying 'newwindow undefined'. I think it's because the page is submitting to theserver and when it comes back the variable newwindow is no longer defined in the pages scope anymore. is that correct? maboo59
  12. maboo59

    Window popup closes on opening 2nd excel file

    I have a page that generates a report in excel. They page is submitted and the sql query is built in the .cs file, then a javascript function opens a new window sending that query to a page that gets the results and puts the info into a spreadsheet. first time you run it is works fine. if you...
  13. maboo59

    Window popup closes when opening 2nd excel file

    Hi, I have a page that generates a report in excel. They page is submitted and the sql query is built in the .cs file, then a javascript function opens a new window sending that query to a page that gets the results and puts the info into a spreadsheet. first time you run it is works fine. if...
  14. maboo59

    Oracle Reports 6i Bug

    Will Oracle Reports 6i work on XP Pro? I try to install and get a windows error that isn't very descriptive. thanks matt
  15. maboo59

    calling a vb6 executable

    thanks cbokowski
  16. maboo59

    calling a vb6 executable

    hi all can a executable be called in vb6 from javascript. thanks maboo59
  17. maboo59

    calling a vb6 executable

    hi all, i'm trying to call a vb6 executable from my asp code. can anyone steer me in the right direction. thanks in advanced maboo

Part and Inventory Search

Back
Top