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 Mike Lewis 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. desiana

    Print Function

    I am currently developing a system using JSP. When I need to do printing in my program, I will use the browser's print function but the problem is by using this feature I cannot keep track whether user clicks OK or Cancel button. So I'm thinking of developing my own print function. Is it...
  2. desiana

    access restriction

    How to do that ? Do you have any reference for that ?
  3. desiana

    access restriction

    Are there any ways to restrict access to links in a website ? I develop a website in which some pages are available for everybody while the rest are restricted to certain users only
  4. desiana

    Confirm Function

    I am confused also, because when I go through the coding itself, it should work just fine. Before the script, I put JSP coding and HTML to retrieve information from the database and display it in the table. Do I need to show u the whole program ?
  5. desiana

    Confirm Function

    Currently I am doing a program using JSP. In that program I use JavaScript function &quot;confirm&quot;. The problem is it appears twice although I only define it once. Do you have any ide what is wrong with it ? The portion of the coding is : <%if(v_seq.size()==0) {%> <script>...
  6. desiana

    Confirm Function

    Currently I am doing a program using JSP. In that program I use JavaScript function &quot;confirm&quot;. The problem is it appears twice although I only define it once. Do you have any ide what is wrong with it ? The portion of the coding is : <%if(v_seq.size()==0) {%> <script>...
  7. desiana

    Display String with Single Quotation

    Currently I am doing a program in JSP, and my problem is when I want to display a string extracted from database which contains a single quotation mark e.g. 15' Monitor then the rest of the information will be displayed in the wrong column (all shifted to the left one column) in the table...
  8. desiana

    Refresh automatically

    I am doing a system using JSP currently, my problem is that to get the latest data from the database, I have to click the refresh button in the browser or else it will retrive the data from the cache memory (I think). Do you have any idea to solve this problem ?
  9. desiana

    Refresh automatically

    I am doing a system using JSP currently, my problem is that to get the latest data from the database, I have to click the refresh button in the browser or else it will retrive the data from the cache memory (I think). Do you have any idea to solve this problem ?
  10. desiana

    click one button and print automatically

    I think if I use the method in the FAQ, users still have to modify by themselves. What I want is every table will be printed on exactly a separated page without having to do anything. So let's say, I have four tables. When users click that print button, each table will be printed on different...
  11. desiana

    Disable the browser's print button

    how to turn off the address bar ? what command should I use ?
  12. desiana

    Disable the browser's print button

    Is there a way to hide the value being passed to the pop up window ? Because if I use &quot;myUrl.jsp?paramOne=testingOne; paramTwo=testingTwo&quot;, I can see on top of the pop up window what paramOne and paramTwo values are. Since I am passing username and password, I don't want it to be seen...
  13. desiana

    click one button and print automatically

    I am doing a program in JSP. I have one button called auto generated. When user clicks on it, it will automatically print all data located in a table without actually displaying it on the screen. Is it possible to do that ? And one more thing : the data needs to be printed is segmented in tables...
  14. desiana

    click one button and print automatically

    I am doing a program in JSP. I have one button called auto generated. When user clicks on it, it will automatically print all data located in a table without actually displaying it on the screen. Is it possible to do that ? And one more thing : the data needs to be printed is segmented in tables...
  15. desiana

    Disable the browser's print button

    I am doing a program in JSP now. What I want to do is : when user click a button, a pop up window will be displayed and the problem is how to pass values from the main window (the window in which the button is located) to the pop up window ? Usually, I use request.getParameter() to get values...
  16. desiana

    Disable the browser's print button

    I am currently doing a program using JSP.In my program I have a print button which does a function other that printing. That is why I want to restrict users from clicking on the browser print button. I have thought of three possible things that I can implement, i.e : 1. Disable the browser's...
  17. desiana

    Disable the browser's print button

    I am currently doing a program using JSP.In my program I have a print button which does a function other that printing. That is why I want to restrict users from clicking on the browser print button. I have thought of three possible things that I can implement, i.e : 1. Disable the browser's...
  18. desiana

    Setting MySQL username and password

    what is the command to shutdown and restart the mysql server ? my user table looks like this : +------------------+------------------+ | user | host | password | +------+-----------+------------------+ | root | localhost | 5c1fb21a20d15f82 | | root | % | 6f0631ce5f462279 |...
  19. desiana

    Setting MySQL username and password

    In my user table, I have 2 records : root (pwd=one) and kun (pwd=two). But when I try to execute this command : mysql -u root -p Enter password : ***** this error will be prompted : &quot;ERROR 1045: Access denied for user: 'root@localhost' (Using password: YES)&quot; What might be the problems ?
  20. desiana

    Setting MySQL username and password

    What does this error :&quot;ERROR 1130: Host 'localhost' is not allowed to connect to this MySQL server&quot; mean ?

Part and Inventory Search

Back
Top