HTML tags img src="Pic.gif" alt="blah..." a href="file" title="blah..."

Has anyone managed to have the "alt" tag on an image <img src="abc.gif" alt="my image descriptor"> or the title tag (such as in ) work in the JavaHelp. If so, how did you accomplish the task. I have exhausted every avenue and have not been able to get those tags to work. They display fine in all browsers (IE, Moz, Firefox and Netscape), I am baffled.
Furthermore, I have still to be able to get any of the org.netbeans.modules.javahelp.* to work of the JavaHelp. Checked all params and values, they are correct, but all i get in the JavaHelp are the cursed ??. Is their a file or library that needs to be included at the top of the HTML file?
This question is also posted in JavaHelp Blogs
Thanks
Pablo

I have posted similar items in every blog i could think of in order to fetch an answer. Unfortunatelly, my belief is that JavaHelp is unable to support the alt and title tags within html code.
TY Balus
ps I wish I could award more stars for an answer to this dilema...
Edited by: pablodiaz on Dec 4, 2008 9:21 PM

Similar Messages

  • I want to display BLOB image in JSP Using  html tags IMG src=

    GoodAfternoon Sir/Madom
    I Have got the image from oracle database but want to display BLOB image using <IMG src="" > Html tags in JSP page . If it is possible than please give some ideas or
    Send me sample codes for display image.
    This code is ok and working no problem here Please send me code How to display using html tag from oracle in JSP page.
    <%@ page import="java.sql.*" %>
    <%@ page import="java.io.*" %>
    <%@ page import="javax.swing.ImageIcon;" %>
          <%
            out.print("hiiiiiii") ;
                // declare a connection by using Connection interface
                Connection connection = null;
                /* Create string of connection url within specified format with machine
                   name, port number and database name. Here machine name id localhost
                   and database name is student. */
                String connectionURL = "jdbc:oracle:thin:@localhost:1521:orcl";
                /*declare a resultSet that works as a table resulted by execute a specified
                   sql query. */
                ResultSet rs = null;
                // Declare statement.
                PreparedStatement psmnt = null;
                  // declare InputStream object to store binary stream of given image.
                   InputStream sImage;
                try {
                    // Load JDBC driver "com.mysql.jdbc.Driver"
                    Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
                        /* Create a connection by using getConnection() method that takes
                        parameters of string type connection url, user name and password to
                        connect to database. */
                    connection = DriverManager.getConnection(connectionURL, "scott", "root");
                        /* prepareStatement() is used for create statement object that is
                    used for sending sql statements to the specified database. */
                    psmnt = connection.prepareStatement("SELECT image FROM img WHERE id = ?");
                    psmnt.setString(1, "10");
                    rs = psmnt.executeQuery();
                    if(rs.next()) {
                          byte[] bytearray = new byte[1048576];
                          int size=0;
                          sImage = rs.getBinaryStream(1);
                        //response.reset();
                          response.setContentType("image/jpeg");
                          while((size=sImage.read(bytearray))!= -1 ){
                response.getOutputStream().write(bytearray,0,size);
                catch(Exception ex){
                        out.println("error :"+ex);
               finally {
                    // close all the connections.
                    rs.close();
                    psmnt.close();
                    connection.close();
         %>
         Thanks

    I have done exactly that in one of my applications.
    I have extracted the image from the database as a byte array, and displayed it using a servlet.
    Here is the method in the servlet which does the displaying:
    (since I'm writing one byte at a time, it's probably not terribly efficient but it works)
         private void sendImage(byte[] bytes, HttpServletRequest request, HttpServletResponse response) throws IOException {
              ServletOutputStream sout = response.getOutputStream();
              for(int n = 0; n < bytes.length; n++) {
                   sout.write(bytes[n]);
              sout.flush();
              sout.close();
         }Then in my JSP, I use this:
    <img src="/path-to-servlet/image.jpg"/>
    The name of the image to display is in the URL as well as the path to the servlet. The servlet will therefore need to extract the image name from the url and call the database.

  • HTML tags: img alt="" element title=""

    Has anyone managed to have the "alt" tag on an image <img src="abc.gif" alt="my image descriptor"> or the title tag (such as in ) work in the JavaHelp. If so, how did you accomplish the task. I have exhausted every avenue and have not been able to get those tags to work. They display fine in all browsers (IE, Moz, Firefox and Netscape), I am baffled.
    Furthermore, I have still to be able to get any of the org.netbeans.modules.javahelp.* to work of the JavaHelp. Checked all params and values, they are correct, but all i get in the JavaHelp are the cursed ??. Is their a file or library that needs to be included at the top of the HTML file?
    Thanks
    Pablo

    I have posted similar items in every blog i could think of in order to fetch an answer. Unfortunatelly, my belief is that JavaHelp is unable to support the alt and title tags within html code.
    TY Balus
    ps I wish I could award more stars for an answer to this dilema...
    Edited by: pablodiaz on Dec 4, 2008 9:21 PM

  • Very important:   tag img=????

    I have a problem with the method getAttribute.
    I'm scanning a web page looking for the tag IMG but doesn't work.
    If I look for <A> it works;
    I don't understand why, can you help me???
    Here is the code:
    Reader rd = getReader(args[0]);// the URL
    kit.read(rd, doc, 0);
    ElementIterator it = new ElementIterator(doc);
    javax.swing.text.Element elem;
    while ((elem = it.next()) != null)
    SimpleAttributeSet s = (SimpleAttributeSet) elem.getAttributes().getAttribute(HTML.Tag.IMG);
    if (s != null)
    System.out.println(s.getAttribute(HTML.Attribute.SRC));
    }

    Sorry, try this:
    Reader rd = getReader(args[0]);// the URL
    kit.read(rd, doc, 0);
    ElementIterator it = new ElementIterator(doc);
    javax.swing.text.Element elem;
    while ((elem = it.next()) != null)
       if (elem.getName().equals(HTML.Tag.IMG.toString()))
          System.out.println(elem.getAttributes().getAttribute(HTML.Attribute.SR));

  • HTML TAGS in messages

    Hi -
    We have requirement where we want to add some HTML Tags i.e. Bold Wording, URL with HREF etc. in Application Message and they should appear as expected on HTML Quoting Messages i.e. Bold Word, URLs etc.
    I am working on HTML Quoting application to have these changes in messages. (Application Developer Resp. Application --> Messages. Application is Oracle Quoting.
    The sample message could be...
    Please note that this action is <b>not allowed</b>.
    In this message not allowed should appear in Bold. As I am referring to the Message for my PageStatus component.
    I tried adding html tags but could not see any effect. I see those tags in the message on the screen. When checked the source of the page I can see that those tags are replaced by &lt and &gt.
    Does anyone know how to achieve this?

    Hi,
    what is the technology you are using?
    Frank

  • Displaying content in JSP page, want BR but not other Html tags

    I have a page and am reading files and displaying the contents of the files onto the page in a <div> Oneissue is that in the file the end of line are \n or \r\n whichever operation system. I replaced those with <BR> no problem. Now my issue is that I display that in the JSP page:
    <c:out value="${filecontents}" escapeXml="false" />I use escapeXml so that <BR> will add the line breaks. Now my issue is that the file might contains other HTML tags that I want to display simply as text - I don't want the browser to render the other HTML tags.
    Is there a way to do that? Would I have to replace HTML tags with something special?

    Hmm... your file contains HTML tags, but you don't want the browser to interpret them as HTML tags, right? So the way to do that is to use escapeXml="true" in your c:out element.
    But then that also escapes the <BR> tags that you carefully put in there. And you don't want that. You want the browser to interpret those as HTML tags.
    I guess you can't have it both ways. Can you do something like outputting one line of the file at a time with <c:out ... escapeXml="true"> followed by <br>?

  • HTML img tag and src attribute as a byte[]

    Hi everybody
    I have a question is it possible to send a byte[] to the src attribute in a <img> HTML tag. What i would like to gain is a way of reading an img file from the jar in a custom tag which is no problem. Problems start when i want to send a byte[] which I have read from the InputStream to the StringBuffer which contains the HTML code.
    byte[] dataByte = null;
    String charEncoding = "UTF-8";
    InputStream in = imageURL.openStream(); //InputStream to the img file inside a jar
    StringBuffer buffer = new StringBuffer();
    StringBuffer sb = new StringBuffer();
    String imgData = "";
    int data;
    while((data = in.read()) != -1)
    buffer.append(new Integer(data).toString(), charEncoding);                              
    imgData = buffer.toString();
    dataByte = imgData.getBytes();The problem starts in this line, i think i need some encoding to do this.
    sb.append("<img src=\""+dataByte.toString()+"\">");thx in advance

    I know that u can do something like that :
    <html>
    <body>
    </body>
    <IMG
    SRC="data:image/gif;base64,R0lGODdhMAAwAPAAAAAAAP///ywAAAAAMAAwAAAC8IyPqcvt3wCcDkiLc7C0qwyGHhSWpjQu5yqmCYsapyuvUUlvONmOZtfzgFzByTB10QgxOR0TqBQejhRNzOfkVJ+5YiUqrXF5Y5lKh/DeuNcP5yLWGsEbtLiOSpa/TPg7JpJHxyendzWTBfX0cxOnKPjgBzi4diinWGdkF8kjdfnycQZXZeYGejmJlZeGl9i2icVqaNVailT6F5iJ90m6mvuTS4OK05M0vDk0Q4XUtwvKOzrcd3iq9uisF81M1OIcR7lEewwcLp7tuNNkM3uNna3F2JQFo97Vriy/Xl4/f1cf5VWzXyym7PHhhx4dbgYKAAA7"
    ALT="Larry">
    </html>I want to do exactly the same thing but via custom tags. The problem is as u say i have some data in the src attribute but the web browser doesn't interpret it right. sory for the long html source.

  • Regular Expresson to Extrcat URLs from img src tags

    Hi,
    I have a huge string containing html tags, some of these tags being <img src="URL"> ones. I need to extract the urls from all the occurences of these tags in the input string. This is what I am doing:
    Pattern p=null;
    Matcher m= null;
    String word0= null;
    String word1= null;
    p= Pattern.compile(".*<img[^>]*src=\"([^\"]*)",Pattern.CASE_INSENSITIVE);
    m= p.matcher(txt);
    while (m.find())
        word0=m.group(1);
        System.out.println(word0.toString());
         }The problem with this code is that this prints only the last URL. For example if there are 5 <img src="URL"> tags, this code prints only the URL contained withn the 5th< img src> tag. Please tell me how to solve this.
    Thanking you in advance

    Here's another approach:
    ok so this is assuming that the source text is not one line of strings, but mulitple lines.
    String[] lines = txt.split("\n")this splits the string based on the newline character. then you can iterate through the array and use the pattern on each string. The only thing that can go wrong here is if there are two images in one line of code. Then you can use some of the methods in the String class to find each instance of "img src=", and you can figure out the rest.
    another, better, way to split the string is with a string tokenizer (simple method in my library):
    * Returns an array of strings from splitting the givin string
    * with the given deliminator.  See the example<br/>
    * <br/>
    * <i>Example:</i><br/>
    * <code>splitTokens("ID: 1920129 NAME: JOHNY IAMYOURFATHER: IDONOTWANT", ": ")</code> would return:<br/>
    * <code>["ID",190129","NAME","JOHNY","IAMYOURFATHER","IDONOTWANT"]</code>
    * @param base
    *               the string to be split
    * @param delim
    *               the deliminator that is used to split the string.  If the
    *               deliminator is <code>", "</code>, then the string will be
    *               split on any combination of commas and spaces, along with
    *               individual commas and spaces.
    * @return an array of strings split from the base string by the deliminator
    public static String[] splitTokens(String base, String delim) {
         StringTokenizer toker = new StringTokenizer(base, delim);
         String pieces[] = new String[toker.countTokens()];
         int index = 0;
         while (toker.hasMoreTokens()) {
              pieces[index++] = toker.nextToken();
         return pieces;
    }{code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • No embed html tag in flash CS5

    Hi, I am a newbie in flash. I understand in order to embed my slideshow into my website,  I need to copy the < embed >  tag in the code after publish to HTML and paste in in my webpage. I have done my slideshow and is working but I can't find the < embed > code from my HTML file. Below is my code from my html file, please help.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
         <head>
              <title>Flashslide1</title>
              <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
              <style type="text/css" media="screen">
              html, body { height:100%; background-color: #ffffff;}
              body { margin:0; padding:0; overflow:hidden; }
              #flashContent { width:100%; height:100%; }
              </style>
         </head>
         <body>
              <div id="flashContent">
                   <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="700" id="Flashslide1" align="middle">
                        <param name="movie" value="Flashslide1.swf" />
                        <param name="quality" value="high" />
                        <param name="bgcolor" value="#ffffff" />
                        <param name="play" value="true" />
                        <param name="loop" value="true" />
                        <param name="wmode" value="window" />
                        <param name="scale" value="showall" />
                        <param name="menu" value="true" />
                        <param name="devicefont" value="false" />
                        <param name="salign" value="" />
                        <param name="allowScriptAccess" value="sameDomain" />
                        <!--[if !IE]>-->
                        <object type="application/x-shockwave-flash" data="Flashslide1.swf" width="400" height="700">
                             <param name="movie" value="Flashslide1.swf" />
                             <param name="quality" value="high" />
                             <param name="bgcolor" value="#ffffff" />
                             <param name="play" value="true" />
                             <param name="loop" value="true" />
                             <param name="wmode" value="window" />
                             <param name="scale" value="showall" />
                             <param name="menu" value="true" />
                             <param name="devicefont" value="false" />
                             <param name="salign" value="" />
                             <param name="allowScriptAccess" value="sameDomain" />
                        <!--<![endif]-->
                             <a href="http://www.adobe.com/go/getflash">
                                  <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
                             </a>
                        <!--[if !IE]>-->
                        </object>
                        <!--<![endif]-->
                   </object>
              </div>
         </body>
    </html>
    Regards
    AO

    Just let CS5 publish an html file and either build into that page or copy from that page into another.  I do not have CS5, so I don't know what it is producing for embedding code.  With the newer versions of code, you might need to include javascript files and possibly other lines of code in the html file. Your best bet is to have a working version of the page that Flash produces and just copy any unique stuff from it until your other pages displays what you want.

  • Error code: the tag "img" doesn't have an attribute: "onload" in currently active versions.

    I'm having trouble creating new pages from a template all of a sudden. It's giving me the error code listed above. Any ideas?

    Seems like you are using the dreaded DW pop-up menus. They
    flunk big time
    in many ways. Please read this -
    http://www.losingfight.com/blog/2006/08/11/the-sordid-tale-of-mm_menufw_menujs/
    There are much better ways. Check the uberlink and MacFly
    tutorials at
    PVII -
    http://www.projectseven.com/
    and the Navbar tutorial/articles at Thierry's place
    http://tjkdesign.com/articles/dropdown/
    Or this one (more recent article):
    http://tjkdesign.com/articles/Pure_CSS_Dropdown_Menus.asp
    Or to get it done fast, go here -
    http://www.projectseven.com/tutorials/navigation/auto_hide/index.htm
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "lucille4" <[email protected]> wrote in
    message
    news:ghc6gm$gs$[email protected]..
    > Using Dreamweaver to build a nav bar, the program adds
    an onload attribute
    > to
    > the img tag which then won't validate.
    > The error is "the tag: img doesn't have an attribute:
    onload in currently
    > active versions". It seems to only insert this code when
    you check the box
    > to
    > show the down image initially. Any thoughts on why it
    does this? You can
    > remove
    > this onload attribute and it still seems to function
    properly.
    >
    > <td><a href="mam_rentals.html" target="_top"
    >
    onClick="MM_nbGroup('down','group1','rentals','b_rentals-sel.gif',1)"
    >
    onMouseOver="MM_nbGroup('over','rentals','b_rentals-over.gif','',1)"
    > onMouseOut="MM_nbGroup('out')"><img
    src="b_rentals-sel.gif" alt="Rentals"
    > name="rentals" border="0"
    >
    onload="MM_nbGroup('init','group1','rentals','b_rentals.gif',1)"></a></td>
    >

  • Problems with tags img

    Hello, i`m here again, now i have a little problem that when
    i have a dataset in a table, and in the repeat region not showme
    images when ar einside the text, only showme undefine in this
    current row, somebody cuold help me to know what are wrong?

    HI Kin, yes sorry, i forget, look i will push part of my
    class, when i use the code of spry, in this first funciton i make a
    query from the database and i list all message from a guestbook
    public function MostrarGuest(){
    $Consulto="SELECT IdGuest AS id_query, Titulo, Mensaje,
    NombreVisitante FROM guestusuarios usuGuets JOIN `reg_usuarios` reg
    on reg.`id_registros`=usuGuets.id_registros WHERE
    reg.`usuario`='".$this->usuario."' ORDER BY IdGuest";
    $datosCantidad=count($this->db->ejecutarQuery($Consulto));
    $marioSpry=new SpryDelfino();
    //genero el query para el list box
    $camposxml="MensajesUsu,Mensajes";
    $camposHijos="Mensaje,NombreVisitante";
    $html=$marioSpry->CargaArchivos(constant("RUTA")."php_Files/clases/SpryDelfino/xpath,".co nstant("RUTA")."php_Files/clases/SpryDelfino/SpryData").$marioSpry->DataSetSpryDelfino(con stant("RUTA")."php_Files/clases/SpryDelfino/xml.php?query=$Consulto&camposxml=$camposxml&c amposhijos=$camposHijos","dsUsuarios","/MensajesUsu/Mensajes");
    $tabla= new tablaccs('domtable',"My Guest
    Book",$datosCantidad." Message Found");
    $html.="<div spry:region=\"dsUsuarios\">";
    $html.=$tabla->DibujoEncabezado();
    $html.="<tr
    spry:repeat=\"dsUsuarios\"><td><div
    class=resultListItems>
    <ul ><li class='resultListTitle'>";
    $html.="{NombreVisitante}";
    $html.="</li></ul>";
    $html.="<div id=contenido class=CeltasDescripEvent>";
    $html.="{Mensaje}";
    $html.="</div></div></td></tr>";
    $html.=$tabla->dinujoFIntabla();
    $html.="</div>";
    return $html;
    in the line when say $html=$marioSpry->CargaArchivos are a
    class where i load the js spry and when i pass the query to reload
    the xml, this ist not the problem, my real problem are that when i
    have in the data from the database like this
    "This are a sample from the guest<img alt=""
    src="/tglife2ver/php_Files/clases/Formularios/fckeditor/editor/images/smiley/msn/teeth_sm ile.gif"
    />"
    the xml read the tag <img like another row i guess, so i
    need to know how i can make this to insert image in middle of the
    text
    Thank you

  • Html tag in XML and spry

    Hi,
    I have HTML-element in XML doc, but i do not know how to get it out as HTML-element in PHP or in HTML.
    I have this kind of XML tag
    <logo><![CDATA[><a href="http://www.someadress.com"><img src="images/logos/companylogo.jpg" alt="Some Company"/></a>]]></logo>
    I use it in PHP page like this: <td>{logo}</td>
    I get it output in Browser as a String <a href="http://www.someadress.com"><img src="images/logos/companylogo.jpg" alt="Some Company"/></a>.. However I need it print out as an HTML-element not just a string
    Anybody knows how to solve this?
    Juha

    Hi Juha.
    Please have a look at the following.
    This is the XML file called info.xml:
    <?xml version="1.0" encoding="utf-8"?>
    <companies>
        <company>
            <name>Acme Pty Ltd</name>
            <address>23 Rue de Quebec</address>
            <city>Tinseltown</city>
            <website>http://www.acmeptyltd.com</website>
            <logo>logo_acme.jpg</logo>
        </company>
        <company>
            <name>Ajax Cor</name>
            <address>Amsterdamschestraat 203b</address>
            <city>Oranjestadt</city>
            <website>http://www.ajaxbros.com</website>
            <logo></logo>
        </company>
    </companies>
    This is the HTML-markup
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xmlns:spry="http://ns.adobe.com/spry">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled</title>
    <style>
    .MasterDetail {
        font: 100% Verdana, Geneva, sans-serif;
        margin: 2px;
    .MasterDetail .MasterContainer {
        background-color: #EAEAEA;
        border: 1px solid gray;
        width: 35%;
        float: left;
        overflow: hidden;
    .MasterDetail .MasterColumn {
        font-size: 75%;
        background-color: #CCCCCC;
        padding:5px;
        cursor:pointer;
    .MasterDetail .MasterColumnHover {
        background-color: #EAEAEA;
    .MasterDetail .MasterColumnSelected {
        background-color:#848484;
        color: white;
    .MasterDetail .DetailContainer {
        border: 1px solid gray;
        padding:10px;
        width: 60%;
        float: right;
        overflow: auto;
    .MasterDetail .DetailColumn {
        margin-bottom: 1px;
    </style>
    <script src="SpryAssets/xpath.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryData.js" type="text/javascript"></script>
    <script type="text/javascript">
    <!--
    var ds1 = new Spry.Data.XMLDataSet("info.xml", "companies/company");
    //-->
    </script>
    </head>
    <body>
    <div class="MasterDetail">
      <div spry:region="ds1" class="MasterContainer">
        <div class="MasterColumn" spry:repeat="ds1" spry:setrow="ds1" spry:hover="MasterColumnHover" spry:select="MasterColumnSelected">{name}</div>
      </div>
      <div spry:detailregion="ds1" class="DetailContainer">
        <div class="DetailColumn" spry:if="'{logo}'"><a href="{website}"><img src="{logo}" alt="{name}"/></a></div>
        <div class="DetailColumn" spry:if="!'{logo}'">{name}</div>
        <div class="DetailColumn">{address}</div>
        <div class="DetailColumn">{city}</div>
      </div>
      <br style="clear:both" />
    </div>
    </body>
    </html>
    I hope this helps.
    Ben

  • Html tag(such as hr ) in f:view

    Hi all:
    i found that html tags such as <hr> in <f:view> will get a result unexpected!
    <f:view>
    <h:panelGrid>
    <h:outputText value="Changing your password" />
    <hr />
    </h:panelGrid>
    </f:view>
    the result is the line(produced by <hr> tag) appear before the output label "Changing your password"(generated by <h:outputText> tag)?!
    Does anybody know why?

    all HTML tags between <f:view> and </f:view> must to be between <f:verbatim> and <\f:verbatim>?
    Because I'm doing a validation page with the following code, and images don't charge:
    (Name of the page: LOGIN.JSP)
    <%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1" %>
    <%@ taglib uri="/WEB-INF/html_basic.tld" prefix="h" %>
    <%@ taglib uri="/WEB-INF/jsf_core.tld" prefix="f" %>
    <f:loadBundle basename="asersa.datamarketing.bundle.Login" var="bundle"/>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <HTML>
    <HEAD>
    <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <META http-equiv="Content-Style-Type" content="text/css">
    <LINK href="theme/Master.css" rel="stylesheet" type="text/css">
    <TITLE>Login</TITLE>
    </HEAD>
    <BODY bgcolor="#006699">
    <CENTER>
    <f:view>
    <TABLE cellpadding="0" cellspacing="0" border="0" bgcolor="#FFFFFF">
         <h:form id="IdForm">
              <TR align="center">
                   <TD></TD>
                   <TD colspan="2">
    <f:verbatim><IMG border="0"     src="imagenes/LoginTitulo.gif" /></f:verbatim>
                   </TD>
                   <TD>
                        <h:graphicImage url="/imagenes/der1.gif"></h:graphicImage>
                        <!--<IMG border="0" src="imagenes/der1.gif">-->
                   </TD>
              </TR>
              <TR align="center">
                   <TD></TD>
                   <TD>
                        <FONT face="Courier New" color="#999999">
                             <B><I><h:outputText value="#{bundle.usu}" /></I></B>
                        </FONT>  
                   </TD>
                   <TD>
                        <h:inputText value="#{login.nusuario}" />
                   </TD>
                   <TD>
                   <h:graphicImage value="/imagenes/der2.gif"></h:graphicImage>
                        <!--<IMG border="0" src="imagenes\der2.gif">-->
                   </TD>
              </TR>
              <TR align="center">
                   <TD></TD>
                   <TD>
                        <FONT face="Courier New" color="#999999">
                             <B><I><h:outputText value="#{bundle.pass}" /></I></B>
                        </FONT>  
                   </TD>
                   <TD>
                        <h:inputSecret value="#{login.pusuario}" redisplay="false" size="10" maxlength="10" />
                        <!-- el redisplay valepara que el contenido del campo
                        no pueda visualizarse en una query string
                        o en el HTML resultante-->
                   </TD>
                   <TD>
                        <IMG border="0" src="imagenes\der3.gif">
                   </TD>
              </TR>
              <TR align="center">
                   <TD></TD>
                        <TD colspan="2"><FONT color="red"><h:outputText     value="#{login.error}" /></FONT></TD>
                        <TD>
                        <IMG border="0" src="imagenes\der3.gif">
                   </TD>
              </TR>
              <TR align="center">
                   <TD></TD>
                        <TD colspan="2"><h:commandButton id="idEnviar" value="#{bundle.comprobar}" action="#{login.enviar}" /></TD>
                        <TD>
                        <IMG border="0" src="imagenes\der4.gif">
                   </TD>
              </TR>
              <TR align="center" valign="top">
                   <TD>
                        <Img src="imagenes\abajoizq.gif">
                   </TD>
                   <TD colspan="2">
                        <Img src="imagenes\abajo.gif">
                   </TD>
                   <TD>
                        <Img src="imagenes\abajoder.gif">
                   </TD>
              </TR>
         </h:form>
    </TABLE>
    </f:view>
    </CENTER>
    </BODY>
    </HTML>

  • Search for strings inside html tags ?

    Is there any way to get Spotlight to find search strings inside html documents? One example is I want to find any file that includes a certain alt=" " string inside an img src tag.
    Spotlight does not seem to include anything inside html tags in it's search, as far as I can tell.
    Am I missing something? Is there something I need to do?
    Thanks for any ideas,
    KarenD
    G5   Mac OS X (10.4.4)  
    G5   Mac OS X (10.3.5)  

    Very strange--it does find text inside the html files, but indeed does not seem to have text that is in the file but only appears within a tag. The solution is EasyFind by Christian Grunenberg:
    http://www.grunenberg.com
    You can do a content search on files in a particular folder, which I recommend since it does a brute force search and can take awhile if it has to search everything.
    Francine
    Schwieder

  • How to use add image in HTML tag

    Hello frndz
                     i  m working on text chat application in adobe  air.using <mx:html/> tag for dispalying text and  images(smiley).but the font size fo flex is diffrent and html diffrent.i  mean i m using 10 font size but it looks too large on  <mx:html/>  component.is there any way to cast them in same size.
    The second and major problem is that it can not add images to html  tag.when i m giving images like:-private var txt:String="<img  src='src\smily\tongue.gif'/>" .
    it shows nothing but when i give images through http path it shows  images on html componenet.
    can any body explain me the problem.
    Thanks And regards
      Vineet Osho

    thanks Alot René Bühling for  your quick reply.but the link u mentioned ith reply is not working for  me.
    ok can u tell me how can i manage my flex font  size 10 to  <mx:html tag 's font size 10.
    i think there is large difference  between flex font and html font.so please guide me for that.
    Thanks  Alot
    Vineet osho

Maybe you are looking for

  • Music app wont open!!!

    i have an iPhone 3G iOS 4.2, i recently did a restore on my phone because it was running a little slow and plus theres a weird gray line running across the bottom of my screen and it only goes away when i turn the screen off...but now since i updated

  • Costing indicator in Repair Service Order

    Hi Gurus, I am facing pblm in Repair Service order for component cost. Actually the flow is creation of a Service Order automatically using Requirement type from a Return Sales Order. Items returned in Return Sales Order are Non - valuated & hence ap

  • SAP Workflow for Notify when material is Reserved

    Hi, I need to Notify via Email to Planning team When Reservations For Materials On An Operation Have Been Filled And All Non-Stock Components Have Been Received. Is there any Standard Workflow template is available for above scenerios ? Thanks in Adv

  • Gather Statistics

    exec dbms_stats.gather_schema_stats( - ownname => 'PROD1, - options => 'GATHER AUTO', - estimate_percent => dbms_stats.auto_sample_size, - method_opt => 'for all columns size repeat', - degree => 25 - I have 400 tables in PROD1 schema, but I want to

  • Auto optimizer stats collection interval

    Hi, I have a question about "auto optimizer stats collection" in 11gR2. I see on the history, 1 execution of "auto optimizer stats collection" on Monday, Tuesday, Wenesday, Thursday and Friday and 5 executions on Saturday and Sunday. I find the durat