Search:

Type: Posts; User: -_-"

Page 1 of 3 1 2 3

Search: Search took 0.11 seconds.

  1. set the cursor to focus to textbox when pageload in javascript (jsp)

    how can i set the cursor to focus to specific textbox when page is loaded for jsp. (javascript)
  2. spring project xml htmlState tag Spring project work flow

    i have a xml to control the web flow of that module in Spring project.
    how can i interpret the web flow xml file as below.

    <?xml version="1.0" encoding="UTF-8"?>
    <module_name>
    <htmlProcessor...
  3. how to call backend when user click popup window close button (spring with jsp project)

    i want to create a checkbox on the popup window. when user "checked" the checkbox "not to show anymore", and click the close button to close the popup window, user then can browser the home page.
    ...
  4. close popup message to call backend program in Spring project

    how can i perform the following effect in java spring maven project. front end is using jsp. (how to prepare ajax to call backend to save value into database when click close button on popup window)...
  5. Replies
    3
    Views
    9,333

    ip address of the mobile app

    may i know if there is IP address of the mobile app? or can the developer detect the app's IP or mobile's IP? to detect location of the app to login?
    for browser, developer can detect the IP and...
  6. what is the different if i add @Override above method and the method without @Override (Spring Project)

    i have a class with implement interface. but i found that sometime there is @Override above before the method. what is usage of @Override?
  7. Re: how to get interface value from other module/compoent in Spring project in eclipse

    public inferface logonsession {

    public String getlogonMehtod(){
    }
    }


    public class personalLogonsession implement logonsession {
    private String _logonmethod;
  8. how to get interface value from other module/compoent in Spring project in eclipse

    i have a interface class and find that my Spring project so many other class has implement that interface class.
    when i create a new get object in the interface and i want only 1 other class which...
  9. Thread: coding meaning

    by -_-"
    Replies
    3
    Views
    1,495

    Re: coding meaning

    return str1 == null ? false : str2 == null ? true : str1.equalsIgnoreCase(str2);

    for above statement, if str1 = null, then return false, else if str2 = null, then return true else str1=str2?
  10. Thread: coding meaning

    by -_-"
    Replies
    3
    Views
    1,495

    coding meaning

    public static boolean equalsIgnoreCase(String str1, String str2)
    /* */ {
    /* 686 */ return str1 == null ? false : str2 == null ? true : str1.equalsIgnoreCase(str2);
    /* */ }
  11. Replies
    0
    Views
    597

    obtain interface class object

    public interface interfaceObject extends Serializable {

    public void setLogonID(String logonID);
    public String getLogonID();
    }


    public class LogonInitOp extends LogonBaseOp {
    // how to get...
  12. how to get interface class object without implementation class

    I have a public interface class, how can I get class object without implementation class.
    I want to new interfaceclass(), but failed.
  13. Replies
    0
    Views
    754

    set session and get value in jsp

    function form_submit(test) {
    document.leadForm.name.value = test;
    document.leadForm.mob.value = mob;

    session.object("sessiontest")=test;
    }
    <form name="leadForm" >
    <input type="hidden"...
  14. Replies
    3
    Views
    2,310

    Re: jsp get another class value and submit form

    i can't get answer, any forum that can help?
    please provide SO forum URL
  15. Replies
    3
    Views
    2,310

    jsp get another class value and submit form

    how to get value in another public class in jsp?
    when the the form is submitted, what is the program trigger first? it will call back-end program first (java) or jsp first?
  16. Replies
    1
    Views
    1,022

    javabean get value

    how can i create a javabean studentBean , this student class with attritube getName and setName method, and how to get value of getName from all other jsp page in the system?
  17. Thread: jsp css (Eclipse)

    by -_-"
    Replies
    10
    Views
    1,695

    set and get hidden value in form submit processing (jsp)

    hwo can i set the hidden field value when form submission. and get this hidden value from next jsp page?
  18. Thread: jsp css (Eclipse)

    by -_-"
    Replies
    10
    Views
    1,695

    get prevous jsp information from current jsp.

    i have login.jsp page with 2 input field and 2 buttons, nomal and abnormal button respectively.
    when normal button click, it will submit form and redirect to home.jsp
    when abnormal button is...
  19. Thread: jsp css (Eclipse)

    by -_-"
    Replies
    10
    Views
    1,695

    paring parameter to next service (submit form)

    if the user click the submit button, then the form will be submitted. and then forward to the next jsp page (home.jsp)
    in home.jsp, how can i know what information i can get from the previous submit...
  20. Thread: jsp css (Eclipse)

    by -_-"
    Replies
    10
    Views
    1,695

    Re: how to get jsp document cookie

    it is not API, just jsp.



    my project requirements is as below,

    1. create a logon jsp page with userid and password field
    and create 2 button , abnormal and normal button respectively. once...
  21. Thread: jsp css (Eclipse)

    by -_-"
    Replies
    10
    Views
    1,695

    get previous url in jsp and check logic to prompt popup window

    let say i have login.jsp and home.jsp, when user input id and password and then click the normal button in logon.jsp, it will redirect to home.jsp page.
    in home.jsp page, how can i get the url of...
  22. Thread: jsp css (Eclipse)

    by -_-"
    Replies
    10
    Views
    1,695

    program life cycle for jsp servlet project?

    for the java project using jsp as front end handling. when i create a button and set the button type = "submit"
    when the user click the submit button, then the form will be submitted.
    but may i...
  23. Replies
    8
    Views
    1,303

    Re: Spring = how to defect first time visitor

    Spring project include this type of file.
  24. Replies
    17
    Views
    1,923

    Re: how can I popup window when i first time logon

    it is part of the java project, for java project in eclipse, it is composed with many type of file , e.g. .properties file is for configuration. front-end file and backend file (java), so is it...
  25. Replies
    8
    Views
    1,303

    get previous url

    for xml file, for different logic, it may redirect to different jsp page, how to know the previous jsp name or URL from next java/jsp ?

    <?xml version="1.0" encoding="UTF-8"?>
    <LOGONFlow>

    ...
Results 1 to 25 of 56
Page 1 of 3 1 2 3