Standard Tags

I am trying to find out the Que position of a person in waiting Q. These are the steps I am following:
1. getting the record set
<sql:query var="myRecordset" dataSource="$myDataBase " >
SELECT myName FROM WaitingList
ORDER BY registerationDate
</sql:query>
2. Iterating through record set
<c:forEach var="row" items="$myRecordset.rows">
<c:if test="$row.get('myName') == '$varName'">
.... I want to display the row number
</c:if>
</c:forEach>
Now the problem is:
1. I want to declare varName at run time. I am not able to do so my using the standard JSP methods like <%= .. %>. How is it done in tags. Please help me.
2. How do you find the row number? I went through the tag documentation, but I could locate any method.
Please Help me

<c:if test="$row.get('myName') == '$varName'">
1. I want to declare varName at run time. varName already is a runtime variable, but setting it directly is probably what's throwing you.
I've run into the same problem. The standard tag library generates some really obscure Java.
You can set the value with <c:set var="varName" value="whatever" />, but then how you you set the
value of value?
Until we figure out the right way, one workaround is to use scriptlets for the conditionals:
String myVarName = whateverIWantItToBe;
String myMyName = <c:out value="${row.myName}" />;
<% if (myMyName == myVarName) { %>
[ conditional code here ]
<% } %>
2. How do you find the row number? <c:out value="${thisRow.count}"/>

Similar Messages

  • How to use standard tags in JSP

    Hi all,
    Just wanted to know how to use standard tags of endeca in JSP ... say for example to display Dimension Name using standard tags.
    Thanks
    --Sam                                                                                                                                                                                                                                                                                                                       

    i was just checking whether we can use endeca TAG'S ( typo mistake in my earlier post not the JSTL standard library )....in my JSP
    We cannot use endeca TAG ...as they are for different purpose.
    Sameer

  • Announce: JSTL (Standard Tags) + Struts (MVC) live web Demo (open source)

    If you are starting a Java Web, you should use MVC and Standard tags,
              this "kit" is a sample of "best" (at least good) practices.
              It is MVC (Struts/Tiles)+JSTL XSLT DAO (Open Source Data Access Object
              w/ SQL) + DB CRUD (Create update delete and SQL DLL scripts)+ J2EE
              Security ( to make Tomcat run like Apache )
              It is KISS (you'll see how simple and how very standard) , good
              practices Free Open Source Framework to develop any web app, with the
              aim of being 80% of any app, but done as simple as possible and easy to
              teach. Again, everything is standard and simple. And it is the fastest,
              most efficient way to develop maintainable code I know of.
              Samples include CMS (Authorize content, XSLT, CMS Comments, sinkable,
              single sign on, etc.), Issue tracking, + more coming.
              Please download and install and see if you want to attend. Details:
              http://basicportal.sourceforge.net
              I use it to teach Struts + JSTL public and private classes. I epically
              teach WHY you should want to do something in a certain way, not just how.
              To attend and see "best practices"
              http://www.basebeans.com/webEx.jsp
              The seminar requires you know servlets, jsp, SQL, JDBC, and at least
              some MVC. (a plus is if you have already deployed and MVC web app in the
              past) Oh...it is $10.00 ( but free to baseBeans clients and/or apache.org
              committers.)
              To keep in touch on this join "MVC-Programmers" mail list at
              http://www.netbean.net/mailman/listinfo/mvc-programmers
              To keep in touch with open source projects go to
              http://news.netbean.net/cgi-bin/webnews.cgi
              Future plans include more docs, Dream weaver support, mail client, RSS
              feeds, BLOG, Shopping Cart Store, etc. etc.
              Did I say everything is standard and as simple as possible?
              Vic
              "Always code to the least amount of astonishment"
              Elements of Java Style
              

    Hi Devlin.
    > And changing the TLD is not
    > something I think should be done. 
    -> http://help.sap.com/saphelp_nw04/helpdata/en/e7/1f1e405d21c442e10000000a1550b0/frameset.htm
    > I see the portal-inf/lib  Is this the
    > same as web-inf/lib and gets picked up by the
    > webserver?
    -> yes. http://help.sap.com/saphelp_nw04/helpdata/en/f9/561140d72dc442e10000000a1550b0/frameset.htm
    Regards, Karsten

  • Can't get standard tags to work

    Hi all!
    I just started to learn jsp and now try to study standard tags.
    I'm using jdk 1.4.2_01
    New tags 1.1 (from Apache) and Tomcat 5 beta.
    My problem is that <c:choose> <c:when> <c:if> and <c:otherwise> tag's bodies are always evaluated. Also <c:out> does not work if i use
    ${myvar} - only out.print(myvar) or <%= myvar /%> are working.
    Here my very simple jsp code:
    <%int randNumber = rand.nextInt(12);%>
    <c:set value="${randNumber}" var="randNumber" /> //I'm not yet sure     whether it's right
    Random is: (does not work)
    <c:out value="${randNumber}">
       ${randNumber}
      </c:out>
      <br>
      <hr>
    Test random:
      <c:if test="${randNumber>7}">
       Random is greater than 7.  //gets printed
       </c:if>
       <br>
      <hr>
       <c:choose>
       <c:when test="${randNumber>7}">
          <c:out>
          Random is greater than 7.//gets printed
          </c:out>
          (<%  out.println(randNumber); %>)<br>
       </c:when>
       <c:when test="${randNumber<7}">
       <c:out>
             Random is lesser than 7.//gets printed
       </c:out>     
           (<%  out.println(randNumber); %>)<br>
       </c:when>
       <c:otherwise>
       <c:out>
       The random is exactly 7.//gets printed
       </c:out>
       </c:otherwise>
       </c:choose>Here is output:
    Random is: (does not work) Test random: Random is greater than 7.
    Random is greater than 7. (6 )
    Random is lesser than 7. (6 )
    The random is exactly 7.
    Can anybody tell me what's the matter?? :-(

    I figured out most of it exept for how to set value in a map.
    <%
    Map map = new HashMap();
    map.put("Mon", "Monday");
    map.put("Tue", "Tuesday");
    map.put("Wed", "Tuesday");
    map.put("Thu", "Thursday");
    map.put("Fri", "Friday");
    map.put("Sat", "Saturday");
    map.put("Sun", "Sunday");
    %>
    //I can get value like this:
    <%= ((Map)pageContext.findAttribute("map")).get("Wed") %>
    //or like this
      <c:out value=" ${map.Wed}"/>
    //this does not work:
    <%--
      <c:set value="Wednesday" target="map" property="${map.Wed}" />
    --%>I looked everywhere but it supposed to be so self-evident that details are found nowhere.
    Please tell me how to do it, because I'm stuck here. I'm dumb.
    :-)

  • Jar file for org.apache.taglibs.standard.tag.el.core.SetTag

    hi all,
    i had been trying to debug the jsp code in eclipse. which requires the project to identify few class files. i am not able to find the jar file which has the implementation of the below mentioned files. (i am using jboss as application server)
    org.apache.taglibs.standard.tag.el.core.SetTag
    org.apache.taglibs.standard.tag.el.fmt.BundleTag
    the list is long... but all the class files refer to the same package.
    your help is much appreciated.
    --thanks a lot.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    hello ritu...
    you would require standard-1.1.2.jar .....
    try with that....
    u can download it from -
    http://www.java2s.com/Code/Jar/CatalogJar.htm
    classes contained in standard-1.1.2.jar -
    org.apache.taglibs.standard.tag.el.core.OutTag.class
    org.apache.taglibs.standard.tag.el.core.ParamTag.class
    org.apache.taglibs.standard.tag.el.core.RedirectTag.class
    org.apache.taglibs.standard.tag.el.core.SetTag.class
    org.apache.taglibs.standard.tag.el.core.UrlTag.class
    org.apache.taglibs.standard.tag.el.core.WhenTag.class
    org.apache.taglibs.standard.tag.el.fmt.BundleTag.class
    org.apache.taglibs.standard.tag.el.fmt.FormatDateTag.class
    org.apache.taglibs.standard.tag.el.fmt.FormatNumberTag.class
    regards
    vamsi

  • Standard Tag library

    Hi All
    Could anybody let me know what are all standard tag libraries is
    being used for JSP Development in Jdeveloper 3.2.3 environment
    apart from the default one.
    I founnd couple of them on internet, but its difficult to decide
    which one to use. Can some body provide me the url's where I can
    download the trial versions of them
    Thanks!
    Arvind

    Try the Apache Jkarta project tag libraries. They're free and
    quite extensive. Kudos to Apache for all the fine work this
    group does.

  • New MVC with Standard Tags and DB sample

    I have posted initial build of a new learning application on
              SourceForge "basicPortal" under CVS
              http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/basicportal/basicportal
              It is using Struts with Standard Tags and X: Transform from DB, Realm
              base security, CURD, etc. etc. I have big plans for this, to be 20% of
              code that gets used 80% of time and "faces" and expression language
              compliant.
              (Err.. this build is not for newbies, but I will update it .... a lot
              and often.)
              To keep up on this and related topics, there is a mail list
              http://www.netbean.net/mailman/listinfo/mvc-programmers
              that also gets you password to other baseBeans.com features.
              and a newsgroups readers news.baseBeans.com.
              Hope you like,
              Vic C.
              

    Looking at the XFILES.5.xml file and Install.vbs files of the XFILES installer, it appears that the XDBPM_SUPPORT and XFILES_DBA_TASKS actions will only be run if you enter a SYSDBA user in the "DBA User" field of the installer. However, for some reason, Oracle seems to have commented out the command that checks to ensure that the DBA user you entered is a SYSDBA user, and the "DBA User" field defaults to SYSTEM, which is not a SYSDBA user. Since I got things working I haven't tried rerunning the installer with a SYSDBA user, but maybe it will work better. The installation documentation and/or the installation scripts need to be updated to reflect the need for a SYSDBA user.
    Regarding the APEX version of XFILES, this has not installation instructions whatsoever, and there are prerequisite steps to get this to install correctly as well. I tried importing the f102.sql file into APEX and it failed on the prereq validation because an "XFILES/Apex" folder wasn't found in XML DB. I went looking for anything that creates this directory and I found that there is another XFILES_DBA_TASKS.sql script specifically for the APEX version. It is included in the f102.sql file. So I cut and paste the contents into SQL*Plus and ran it as SYS. I was then able to install the f102 application.

  • How to learn standard tag libraries

    hello sir
    i m new to standard tag libraries and dont know that how to proceed plz help me out that how to proceed and if possible then plz give the the link of some good study material....
    thank you
    gaurav

    Did it ever occur to you that there are (online) shops with those big paper like bricks, which have words in them? They are called books, and if you read them knowledge will lodge itself into your brain if you will let it.
    Don't be cheap, buy a book!

  • Re: Announce: J2EE MVC training using Struts with Standard Tags (JSTL)   8/2 in NYC

    Standard J2EE MVC training using Struts with Standard Tags (JSTL)
    -We have done more Struts training than anyone. This class adds Standard Tag Libs (JSTL) with MVC and a portal discussion.
    Full Syllabus is at :
    http://www.basebeans.com/syllabus.jsp
    NYC on 8/2.
    This is the last week to sign up :
    http://www.basebeans.com/classReservation.jsp
    More dates(tentative):
    8/9 - Chicago downtown Marriott
    8/16 - Atlanta downtown Marriott
    8/23 - Austin downtown Marriott
    To keep up on upcoming MVC training sign up at:
    http://www.basebeans.com:8081/mailman/listinfo/mvc-programmers
    Hope to see you,
    Thanks,
    Vic
    Ps. 1: Set your newsreader such as Outlook Express or Netscape to news.basebeans.com for Open Standard news groups like JDO, Apache, SOAP, etc.
    Ps 2: The sample app will be available end of next week at:
    http://www.basebeans.com/downloads.jsp

    i have same problem with
    CLI130 Could not create domain, domain1
    then i try these things with PATH stuff but it haven't worked for me...
    then i tried to search windows registry for string domain1 and nothing found...
    then i searched my profile directory (on windowsxp c:\Documents and Settings\user on linux /home/user) for files that containd string domain1 and i found some .adadmin* files (as i remember there were 3 files) then i deleted them, try to install sun app server and it works for me... there are still some warnings but at least installation finishes and files were not deleted...
    i hope this help...
    for me it does

  • Nested tags vs standard tags

    can any one explain the difference b/w nested tags and standard tags.
    what is the difference b/w nested: write and bean:write

    well,why don't you check the struts documentation to know the difference
    http://struts.apache.org/1.x/struts-taglib/tlddoc/bean/write.html
    http://struts.apache.org/1.x/struts-taglib/tlddoc/nested/tld-summary.html

  • I can't connect to MySQL database from The JSP Standard Tag Library

    Hi All !
    I have a problem, please help me anybody !
    I don't connect to MySQL database from jsp page using JSTL tag but from servlet all work correctly. I set my path and put �mysql-connector-java-3.1.13-bin.jar� in ENVIRONMENT WinXP(classpath=C:\Java\jdk1.5.0_10\jre\lib\ext\mysql-connector-java-3.1.13-bin.jar) and in War project folder �WEB-INF/lib� and in [TomcatServer]\common\lib.
    I have in folder�WEB-INF/lib� following files:
    antlr.jar
    commons-beanutils.jar
    commons-collections.jar
    commons-digester.jar
    commons-fileupload.jar
    commons-logging.jar
    commons-validator.jar
    jakarta-oro.jar
    jsf-api.jar
    jsf-impl.jar
    jstl.jar
    mysql-connector-java-3.1.13-bin.jar
    standard.jar
    struts.jar
    I'm using:
    NetBeans 5.5 Build200610171010 (bundled Tomcat 5.5.17)
    Ent.Pack 20061020 Visual Wb Pack 061103
    OS WinXP SP2
    Java 1.5.0_10
    MySQL 5.0.18-nt
    1:<%@page contentType="text/html"%>
    2:<%@page pageEncoding="UTF-8"%>
    8: <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    9: <%@taglib uri="http://java.sun.com/jstl/sql" prefix="sql"%>
    10:
    11: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    12: "http://www.w3.org/TR/html4/loose.dtd">
    13:
    14: <sql:setDataSource var="ds"
    15: driver="com.mysql.jdbc.Driver"
    16: url="jdbc:mysql://localhost:3306/test"
    17: user="root"
    18: password="xxxx"/>
    19:
    20:
    21:<sql:query sql="select name, age from People" var="res"
    22: dataSource="${ds}"/>
    I have received report on mistake when entered code at the top:
    �/index.jsp [21;0] According to TLD or attribute directive in tag file, attribute dataSource does not accept any expressions�
    I used instead of (dataSource="${ds}")->(dataSource="ds") but this did not work.
    After build and run I have received
    =========================================START=================================
    HTTP Status 500
    type Exception report:
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: /index.jsp(21,0) According to TLD or attribute directive in tag file, attribute dataSource does not accept any expressions
    org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:510)
    org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:375)
    org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
    org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    org.netbeans.modules.web.monitor.server.MonitorFilter.doFilter(MonitorFilter.java:368)
    root cause
    org.apache.jasper.JasperException: /index.jsp(21,0) According to TLD or attribute directive in tag file, attribute dataSource does not accept any expressions
    org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:39)
    org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:405)
    org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:146)
    org.apache.jasper.compiler.Validator$ValidateVisitor.checkXmlAttributes(Validator.java:955)
    org.apache.jasper.compiler.Validator$ValidateVisitor.visit(Validator.java:710)
    org.apache.jasper.compiler.Node$CustomTag.accept(Node.java:1441)
    org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2163)
    org.apache.jasper.compiler.Node$Visitor.visitBody(Node.java:2213)
    org.apache.jasper.compiler.Node$Visitor.visit(Node.java:2219)
    org.apache.jasper.compiler.Node$Root.accept(Node.java:456)
    org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2163)
    org.apache.jasper.compiler.Validator.validate(Validator.java:1489)
    org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:166)
    org.apache.jasper.compiler.Compiler.compile(Compiler.java:295)
    org.apache.jasper.compiler.Compiler.compile(Compiler.java:276)
    org.apache.jasper.compiler.Compiler.compile(Compiler.java:264)
    org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:563)
    org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:303)
    org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
    org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    org.netbeans.modules.web.monitor.server.MonitorFilter.doFilter(MonitorFilter.java:368)
    note The full stack trace of the root cause is available in the Apache Tomcat/5.5.17 logs.
    Apache Tomcat/5.5.17
    =======================================END================================
    Error: "According to TLD or attribute directive in tag file, attribute dataSource does not accept any expressions" - but according to documentation such parameter possible.
    BUT WHEN JOINING With DATABASE FROM SERVLET ALL WORK FINE.
    I read this doc - [http://tomcat.apache.org/tomcat-5.5-doc/jndi-datasource-examples-howto.html], this applicable if I Tomcat Admin, but i'am not Admin
    I simply user, i.e. I want to place its database on virtual host (Tomcat+(JSP-JSTL)+MySQL).
    There is idea how can resolve this problem
    Thank you in advance ;)

    For all how have similar problem.
    Decision instead of these ways
    <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
    <%@ taglib prefix="sql" uri="http://java.sun.com/jstl/sql" %>
    it is necessary to indicate these
    <%@ taglib prefix="sql" uri="http://java.sun.com/jsp/jstl/sql" %>
    <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

  • Standard Tags in JSP

    Hi,
    Can somebody tell me where can I find a document with list of tags that are supported in Standard JSP technology?
    Thanks

    http://java.sun.com/products/jsp/tags/11/tags11.html

  • Using XPath variable in standard tags

    Hi all.
    I have an xml like this:
    <portrait>http://domain/image.jpg</portrait>I'd like to use what I find in "portrait" tag as the source for an image tag:
    <img src="???"/>How to do? I correctly parse my xml document, and using x:out I'm able to display portrait content (http://.. etc) but I have no idea about how to use it in another tag.
    Can anybody help me?
    Thanks in advance...

    Hi,
    Please try giving the XPath expression as given below:
    /p1:ValidateUserRequest [string-length(Businesspartner) = 6]  system1
    /p1:ValidateUserRequest [string-length(Businesspartner) != 6] system 2
    Please use square brackets before "string" and after "6"...its not getting displayed in my reply...:-(
    Rgds,
    Lekshmi.
    Edited by: Lekshmi N on Jan 6, 2010 12:29 PM

  • Put pt standard tag pagename into pt logic variable

    Looping thru the pages of a community and displaying. Would like to check current page name against the page title in the loop to highlight the current page. Thoughts?
    Thanks!

    yeah, saw that thread and idiot that I am did not specify in my message that I need a pre 6.5 solution. Think I may have found it in a contains currpage call. going to give it a whirl, thanks!
    Got it...where temp is the pt variable for the currcommunitypagesdata foreach var...
    <pt:logic.containsexpr pt:expr="($temp) contains currpage" pt:key="boolvalue"/>
    <pt:logic.if pt:expr="$boolvalue">
    <pt:logic.iftrue>
    <pt:core.html pt:tag="a" href="$temp.url" class="pagemenuitem">**<pt:logic.value pt:value="$temp.title" />**</pt:core.html>
    </pt:logic.iftrue>
    <pt:logic.iffalse>
    <pt:core.html pt:tag="a" href="$temp.url" class="pagemenuitem"><pt:logic.value pt:value="$temp.title" /></pt:core.html>
    </pt:logic.iffalse>
    </pt:logic.if>
    Edited by: mbowles on Feb 2, 2010 6:11 AM

  • SQL Standard Tag Library. Help.

    i am newbies. and i try to use the STL in a Report page. below is the code in my JSP Page.
    <%@ page language = "java" contentType = "text/html" %>
    <%@ taglib prefix = "sql" uri="http://java.sun.com/jstl/sql" %>
    <%@ taglib prefix = "c" uri="http://java.sun.com/jstl/core" %>
    <%@ taglib prefix = "x" uri="http://java.sun.com/jstl/xml" %>
    <html>
    <body>
    <h1><CENTER>Alarm Text Report Testing</CENTER></h1>
    <sql:setDataSource var="oracleSource"
    driver="oracle.jdbc.OracleDriver"
    url="jdbc:oracle:thin:@RioDev:1521:transco"
    user="kim"
    password="kim"/>
    <sql:query var="result" dataSource = "${oracleSource}">
    SELECT * FROM kim.ALARM
    </sql:query>
    <table>
    <c:forEach items="${result.rows}" var="${Alarm}" >
    <tr>
    <td>1</td>
    <td><c:out value="${Alarm.ALARM_TEXT}"/></td>
    <td><c:out value="${Alarm.AREA}"/></td>
    <td><c:out value="${Alarm.GROUP}"/></td>
    <td><c:out value="${Alarm[Group]}"/></td>
    </tr>
    </c:forEach>
    </table>
    </body>
    </html>
    and the Output in the explorer:
    Alarm Text Report Testing
    1
    1
    1
    and the source from the explorer:
    <html>
    <body>
    <h1><CENTER>Alarm Text Report Testing</CENTER></h1>
    <table>
    <tr>
    <td>1</td>
    <td></td>
    <td></td>
    <td></td>
    <td></td>
    </tr>
    <tr>
    <td>1</td>
    <td></td>
    <td></td>
    <td></td>
    <td></td>
    </tr>
    <tr>
    <td>1</td>
    <td></td>
    <td></td>
    <td></td>
    <td></td>
    </tr>
    </table>
    </body>
    </html>
    just wonder why i couldn't get the data from the oracle database.
    please help me... thanks alot..
    kimseang

    Hello, there.
    I haven't worked with Oracle database, but I've used taglibs almost the same way with mySQL, so if you are using the correct JDBC driver and Oracle requires no special SQL notation, it looks really strange to me, because you are doing everything correctly.
    What I would suggest is to leave data source definition without any variable, i.e. default for the whole JSP page. You can do it this way:
    <sql:setDataSource
        driver="oracle.jdbc.OracleDriver"
        url="jdbc:oracle:thin:@RioDev:1521:transco"
        user="kim"
        password="kim"/>In our query you don't need datasource variable either
    <sql:query var="result">
          SELECT * FROM kim.ALARM
    </sql:query>ForEach looping you seem to do correctly. So, if your driver, username and password are correct, you should pick up the data without problems. Certainly if the table has data in it... ;)

Maybe you are looking for

  • TAB SEPARATED instead of COMMA SEPARATED

    Hi everybody, I need to generate a Comma Separated File with reports 9i. As I read here on OTN I defined Destination Format as DELIMITEDDATA and I tried DELIMITED. In the first try, report builder crashed instantly and in the latter try, report build

  • How to force HTML5 video?

    hey, I did a clean install of Yosemite on my mid-2010 MBP 13, and one of the supposed things that was supposed to come of Yosemite (and Safari) was HTML5 video playback. 1) I have "prefer HTML5 playback" set w/Netflix, but, it still demands me to dow

  • Select Options: How to preallocate the select options values?

    Hi All, I have been trying to preallocate my select options. I want to read all values a user is authorized for and set them in the range of the select options fields (before the are actually shown to the user). However, I wasn't able to.. Does anybo

  • My droid razr m in emergency mode

    I can't get my phone to do anything it is in emergency mode.  Help!!

  • Windows XP to Windows 7 problem.

    When I iried installing Windows 7, it will stop while attempting to expand the files and suddenly display an error code , like 08X-------070, sorry I forgot to write it down. But the disturbing part is my PC will not start again, as it comes up with