Please recommend a good tool to make JSP page.

Hi, can someone please recommend me a good tool to make JSP page? Until now, I use notepad which I found is not professional.

Hi kvols:
Thanks a lot for your reply. I had used JEditor before I switched to JCreator. I found both of them quite good. I also tried to use CVS sometime back, but got totally confused about it. I will try to search for the other toolkits you mentioned. Just now, I find one named XMLspy from google. Yet I don't know whether or not it is really as good as stated on its website. I will try it out soon.

Similar Messages

  • Please recommend a good sleeve for the pismo

    Hi,
    Can any of you loving pismo owners please recommend a good sleeve for our beloved pismos. I'm looking for one that would fit the pismo pretty much like a glove, so it won't slide and then I can put the pismo in an another bag.
    Thanks so much for your suggestions!

    I bought a perfect sleeve for mine from Timbuktu. This was a few years ago and I'm not sure they carry it anymore (look on eBay?). I see that the manufacturer makes other sleeves that look nice, too, now. Mine fits the laptop like a glove. It's open at the top with two cloth-padded handles and a strap that snaps into place over the middle of the opening. The padding is nice and thick -- about 1/2." I lugged it in my backpack all around Europe for a summer and it came through just fine.

  • Please recommend a good case w/ belt clip till the otterbox defender....

    comes out.
    I just got a email saying my phone should be In tomorrow & I need a good,protective case w/ a belt clip to hold it In untill the Otterbox defender case comes out for the iPhone 4.
    Please recommend a good case.

    Does anybody know of a leather flip case with a belt clip? The Otterbox is nice, but it still leaves the screen facing everyone when it's on the belt; I'd rather cover it, if only for privacy reasons.
    I'm using Proporta's Aluminium Lined Leather case with my 3G, but their iPhone 4 version (http://www.proporta.com/F02/PPF02P05.php?tid=5140&tmode=des) omits the clip for some bizarre reason.
    At this rate I might see if simply putting a bumper on my phone will let it fit the existing case, though I'll have to cut a bit out of the back if I want to use the flash, of course

  • Can anyone please recommend a good stylus for graphics/artwork on ipad3 (in UK)?

    Can anyone please recommend a good stylus for use with art packages on ipad3? Stylus-r-us looks good but is not available in UK so I am looking for an alternative.

    Thanks for this info. - I'll take a look at that one.

  • How to put Tool Tip in JSP page

    Hello.
    How can i put Tool Tip in JSP page and also html page.

    title="value"
    put this in all the tags whereever it is required

  • Make jsp page read only

    dera frds,
    im working on a site,i make a web page based on jsp,that page has a download file,i want the authorized user can download that file,other can see that file as read only mode,but can't download,so plz provode me some program to make jsp page as read only.

    ya well i want that other can see that file,but only authories users can download that page or file.unauthories user can see that page or file,but can't download.
    basially assume that file might be having some course that can download by authoried users.

  • Would somebody please recommend a good personal budget app for me?

    I have researched this quite a bit and even made up my own budget, but I'm looking for something that I can control myself, is easy to use and that is flexible enough for me to add as many different items or categories as needed. It would also be helpful if it has columns and keeps the columns neat and straight. What I'm using right now does not do that and can be problematic. Please recommend something simple for recording cash flow and expenses in a real easy manner.

    I need digital outs so I can plug in the signal from my pre-amp, use the A/D convertors on the Audio Interface to make it digital, then send it to my Mac using the best possible means. If I lacked the digital outs, there would be no point in having the thing, as I would only be using the A/D convertors in my Mac anyway!
    I was looking at the Hercules 16/24 FW Audio Interface. It seems to do everything I need (plus more), and I can get it for £200. - Does anyone have experience of this Interface? - Is it any good?
    Thanks for all the suggestions so far, - keep em coming please

  • Is any free tool bar for jsp page?

    hi,
    I am having web pages.
    so I am entering some data in text area.
    how to select the font ,size,colors in jsp page.
    i want features like word in jsp page.
    is it any free software available to change font,color of text.
    Thanks
    siva

    and here is the js script for textEditorContent.js ...
    function boldThis(from)
        strSelection = document.selection.createRange().text
        if (strSelection == "")
            document.form1.text.focus()
            if (from == 2) document.form1.text.select()
                strSelection = document.selection.createRange().text
            document.selection.createRange().text = strSelection + "<b></b>"
        else
            document.selection.createRange().text = "<b>" + strSelection + "</b>"
        return;
    function underlineThis(from)
        strSelection = document.selection.createRange().text
        if (strSelection == "")
            document.form1.text.focus()
            if (from == 2) document.form1.text.select()
                strSelection = document.selection.createRange().text
            document.selection.createRange().text = strSelection + "<u></u>"
        else
            document.selection.createRange().text = "<u>" + strSelection + "</u>"
        return;
    function italicThis(from)
        strSelection = document.selection.createRange().text
        if (strSelection == "")
            document.form1.text.focus()
            if (from == 2) document.form1.text.select()
                strSelection = document.selection.createRange().text
            document.selection.createRange().text = strSelection + "<i></i>"
        else
            document.selection.createRange().text = "<i>" + strSelection + "</i>"
        return;
    function fontThis(from)
        var ind=document.form1.fontnames.selectedIndex;
        newfont=document.form1.fontnames[ind].value;
        strSelection = document.selection.createRange().text
        if (strSelection == "")
            document.form1.text.focus()
            if (from == 2) document.form1.text.select()
                strSelection = document.selection.createRange().text
            document.selection.createRange().text = strSelection + "<font face='"+newfont+"'></font>"
        else
            document.selection.createRange().text = "<font face='"+newfont+"'>" + strSelection + "</font>"
        return;
    function sizeThis(from)
        var ind=document.form1.fontsizes.selectedIndex;
        newsize=document.form1.fontsizes[ind].value;
        strSelection = document.selection.createRange().text
        if (strSelection == "")
            document.form1.text.focus()
            if (from == 2) document.form1.text.select()
                strSelection = document.selection.createRange().text
            document.selection.createRange().text = strSelection + "<font size='"+newsize+"'></font>"
        else
            document.selection.createRange().text = "<font size='"+newsize+"'>" + strSelection + "</font>"
        return;
    function colorThis(from)
        var ind=document.form1.colors.selectedIndex;
        newcolor=document.form1.colors[ind].value;
        strSelection = document.selection.createRange().text
        if (strSelection == "")
            document.form1.text.focus()
            if (from == 2) document.form1.text.select()
                strSelection = document.selection.createRange().text
            document.selection.createRange().text = strSelection + "<font color='"+newcolor+"'></font>"
        else
            document.selection.createRange().text = "<font color='"+newcolor+"'>" + strSelection + "</font>"
        return;
    function newlineThis()
        strSelection = document.selection.createRange().text
        if (strSelection == "")
            document.form1.text.focus()
        document.selection.createRange().text = strSelection + "<br>";
        return;
    function insertPic()
        var ind=document.form1.pictures.selectedIndex;
        if(ind==0)
            alert(msg15)
            return false;
        newpic=document.form1.pictures[ind].value;
        strSelection = document.selection.createRange().text
        if (strSelection == "")
            document.form1.text.focus();
        document.selection.createRange().text = strSelection +"<img border=0 src='"+newpic+"'>";
        return;
    function ahrefThis()
        strSelection = document.selection.createRange().text
        if (strSelection == "")
            document.form1.text.focus()
        document.selection.createRange().text = "<a href='" + document.form1.hyperlinknm.value + "' target='_blank'>" + strSelection + "</a>"
        return;
    function textview()
        popupWindow5=open("EDETAIL_Text_View.jsp",'Windown','scrollbars=YES,resizable=YES,left=10,top=20,toolbar=no,width=1000,height=600');
        if (popupWindow5.opener == null)
            popupWindow5.opener = self;
        popupWindow5.focus();
    function callSave(size, module, msg)
        if(!checkMaxLength(document.form1.text,size,msg))
            return;
        if(isBlank(document.form1.text.value))
            alert(module+" "+msg11);
            document.form1.text.focus();
            document.form1.text.select();
            return false;
        if(module=='Question')
            var tempstr ="";
            var count = document.form1.rowCount.value;
            var ind = document.form1.anstype.selectedIndex;
            for (i=0; i<count; i++)
                if(count==1)
                    if(ind>0)  // RADIO or CHECKBOX or DROPDOWN
                        tempstr = document.form1.answerDesc.value;
                    if(ind==1) // RADIO BUTTON
                        if(!checkMaxLength(document.form1.answerDesc,500,"Answer Option"))
                            return;
                        if(!checkMaxLength(document.form1.feedbackDesc,500,"Answer Option"))
                            return;
                else
                    if(ind>0)  // RADIO or CHECKBOX or DROPDOWN
                        tempstr = document.form1.answerDesc.value;
    if(ind==1) // RADIO BUTTON
    if(!checkMaxLength(document.form1.answerDesc[i],500,"Answer Option"))
    return;
    if(!checkMaxLength(document.form1.feedbackDesc[i],500,"Answer Option"))
    return;
    if(ind>0)
    if(isBlank(tempstr) )
    alert(msg12);
    if(count==1)
    document.form1.answerDesc.focus();
    document.form1.answerDesc.select();
    else
    document.form1.answerDesc[i].focus();
    document.form1.answerDesc[i].select();
    return false;
    for (j=i+1; j<count; j++)
    if(document.form1.answerDesc[i].value==document.form1.answerDesc[j].value)
    alert(msg13);
    document.form1.answerDesc[j].focus();
    document.form1.answerDesc[j].select();
    return false;
    document.form1.submit();
    This function is used to go back to previous screen
    function goBack()
    if(window.confirm(msg14))
    if(document.form1.From.value=="Page")
    document.form1.action="EDETAIL_Add_Page_Content.jsp";
    else
    document.form1.action="EDETAIL_Upload_Text_Editor.jsp";
    document.form1.submit();
    By the way didnt this forum itself give you a big hint on Bold, Itallic & underline ?

  • Please recommend a good tutorial for Regular expressions?

    I have several PERL programs that I need to translate in to JAVA for performance reasons. Those programs heavily use Regular Expressions. I have an excellent knowledge about PERL Regular Expressions but know very little about Java Regular Expressions.
    So Can any one of you recommend me a good tutorial for Java Regular Expressions.
    Thankx In Advance
         LRMK

    Since you know regexs, the java.util.regex.Pattern class API is probably all you need, it pretty thoroughly documents Java's flavor, and the differences from PERL's flavor.

  • Please recommend a good interface

    I am looking to spend up to $300 and I am looking for a good interface so I can record guitars and miked instruments. What do you recommend?

    I've just brought EDIROL (Roland) UA-4FX and have successfully recorded guitars, keyboard (midi) and vocals on microphone (none of these need to be powered up) and the quality is good. I need to fiddle around a bit with the advanced drivers and effects, but the basics are good. This cost me $399 australian dollars.

  • Another newbie question (sorry)---Please recommend a good training book?

    And where to order?
    Thanks.

    All these books are great - and I've read them all and done the exercises. But I have to put in my 2 cents and recommend Larry Jordan's book and web site. The book is well written and understandable. His web site is full of great tips, and his free monthly e-mail newsletter is great. Now, he has a new newsletter called Edit Well published in conjunction with Peachpit Press.
    Details on all this at: http://www.larryjordan.biz/
    Good Luck! And welcome to Final Cut!

  • Can anyone please recommend a good open source netflow analyzer?

    Thank you in advance for your suggestions.
    Regards,

    http://www.cisco.com/en/US/prod/iosswrel/ps6537/ps6555/ps6601/networking_solutions_products_genericcontent0900aecd805ff72b.html

  • Html select change to make JSP page forward keeping the exsting field value

    Hello, All,
    I am trying to make the change of a selection box in HTML form to reload the page and populate the second selection box based on the value in the first selection box. The content of the second selection box is from database....
    i used a javascript funtion and called it by the onChange(), the onChange redirect the page to the same page. However all my previous input is lost and the second selection box is not populated based on the first selection box.
    The question is how do I keep the current input and reload the page based on the change of a selection box?
    Please help..
    Thanks..
    Here is the code
    <script language=javascript type="text/javascript">
    function forward(){
    location.href="trdCapDetail.jsp";
    </script>
    <select name=vehicle onChange="forward()">
    <%for(int i = 0; i < Vehicle.getAll().size(); i++){
         Vehicle vehicle = (Vehicle)(Vehicle.getAll().elementAt(i));     
         out.write("<option value=" + vehicle.getKey()+" >" + vehicle.getCode() + "</option>");
    %>

    Ok two things.
    1 - you need to submit the value which was selected.
    2 - you need to repopulate the select box with it.
    1 - you need to submit the value which was selected.
    You do this by either appending the parameter to the url, or calling form.submit().
    <script language=javascript type="text/javascript">
    // either set parameter on url manually
    function forward(control){
    var param = control.value;
    location.href="trdCapDetail.jsp?vehicle=" + param;
    // or submit the form:
    function forward(control){
      control.form.submit();
    <% pageContext.setAttribute("vehicles", Vehicle.getAll() ) ; %>
    <form name="myForm" action="trdCapDetail.jsp"> 
      <select name="vehicle" onchange="forward(this)">
          <c:forEach var="vehicle" items="${vehicles}">
            <option value="<c:out value="${vehicle.key}"/>"> <c:out value="${vehicle.code}"/> </option>
          </c:forEach>
       </select>   
    </form>2: populating the control
    One way is to use javascript again:
    <c:if test="${not empty param.vehicle}">
      <script language="javascript">
        document.myForm.vehicle.value = "<c:out value="${param.vehicle}"/>";
      </script>
      </c:if>
    // or scriptlet code if you must
    <%
    String selectedVehicle = request.getParameter("vehicle");
    if (selectedVehicle != null){  %>
      <script language="javascript">
        document.myForm.vehicle.value = "<%= selectedVehicle%>";
      </script>
    <%
    %>The other way to keep the current input is to generate the string "selected" inside the option tag for the selected item. In your loop, check if the current id equals the submitted id, and print "selected" if it is.
    Hope this helps,
    evnafets

  • Please provide me build.xml to compile JSP pages

    Hi EveryBody,
    I am using the build.xml file to compile the JSP files to .class files. While running the build.xml file using ANT I am getting the following error.
    <i>
    [jasperc] 2007-06-01 01:22:57 - error-the file 'error_page.jsp' generated the following parse exception: org.apache.jasper.compiler.CompileException: C:Documents and SettingsSatishDesktoptestXMAM30_ECLIPSEtemperror_page.jsp(2,0) Bad file argument to include
                [jspc] BUILD FAILED: file:C:/Documents and Settings/Satish/Desktop/test/XMAM30_ECLIPSE/cfg/build.xml:90: Java returned: 9
    </i>
    Any body have the build.xml file for the standard XMAM30. Because I am doing custom changes to this. While deploying this to PDA I am getting an error because it was able to compile the JSP files in PDA.
    If any body have build.xml file, please give it me.
    Help in this regard is highly appreciated.
    Regards,
    murthy.

    Hello everyone,
    sorry for using this old thread, but it just fits my question ...
    Does anyone have by chance a build.xml  for standard XMAM30 working for Netwaver 7.1?
    Thanks for your help!
    Best regards,
    Petra

  • Please recommend a tool for stress-testing ?

    Could anyone please recommend a (free) tool to do multi-threaded stress-test, on plain java classes ?
    In more detail: I'd like to do unit-test for some plain java methods (only mathematical calculations. No web interface, no swing).
    The emphasis is stress test: i need to launch multiple threads, all of them repeately invoking my method. Under these conditions, I need to report correctness (has the method yielded the expected return value), and statistics on response time.
    Any recommendations would be appreciated . Thanks !

    alex888 wrote:
    Working on a project that need me read data from delimited text file, the data will be converted to a tree-structure. So it's better parse the data into XML format first.What??? Why? You've got a text file and need an object tree, why do you think going to XML in between is a good idea?
    Besides j2se or jdom, any fast tool for it?What do you mean with "j2se", that's not a XML handling tool (it contains several, 'though).
    SAX sounds good for building object trees from XML, but there are several XML mapping libraries out there (try google).

Maybe you are looking for

  • Import parameters in a FM with a previous date

    Dear experts, I need to default the import parameters in one of my function modules with a previous date. For eg: if i hiit F8 on my Z** function module the default value should be YESTERDAYS date NOT todays date. How can i do this? Thanks Ricky

  • Interlocked operations in user-mode

    Hi, I understand there isn't a interface for interlocked operations in user-mode. I would appreciate any help on how to write an implementation by myself. This help should also include how to compile assembler files in SOLARIS , or how to inline asse

  • Rebate settlement with material insted of amount

    hi sd gurus                my client requirement is he want settlle rebate with material(instead of amount) how can we settle

  • InDesign CS6 won't install

    Running Adobe Application Manager I select the option to install InDesign CS6. After downloading it says an error prevented it from installing. I've tried 3 times and it isn't the download. All the Adobe error log gives me is information that doesn't

  • Not sure how to get my photos on to my laptop using icloud? can anyone help

    CAN ANYONE HELP ME, I'M NOT SURE HOW TO SEND MY PHOTOS VIA ICLOUD? DOES MY LAPTOP NEED SOFTWARE ON IT?