Displaying 10 records per page where records are unknown

I'm new to programming. I'm trying to create a form that does the following in jsp/javascript
Displays 10 rows, each row containing a record if records exceeds 10, it will display the remaining records on another page.The first form will contain a link to the second form and the second form will contain the link to the first. So basically there could be infinite number of forms containing 10 rows each on each form each displaying a link to the other forms. So each page at the bottom will have something like this <<previous [1][2][3][4][5]next>>.The algorithm seems complicated and I don't know how to generate another page for displaying the extra records. Is this complicated.Can someone please show me how this is done...HELP
thanx in advance
legato_bluesummers
Here is the code I have currently my apologize for the length. this code is called by another page:
<%@include file="header.jsp"%>
<%@ page import="java.sql.*" errorPage="error.jsp"%>
<%
String connectionURL=
"jdbc:mysql://localhost:3306/studentdatabase?username=username;passwrod=password";
Connection connection = null;
Statement statement=null;
ResultSet rs=null;
%>
<html>
<head>
<%@include file="btechreportheader.jsp"%>
</head>
<body bgcolor="#efefef" text="#000000" link="#ffcc99">
<form name="btechreport" method="post" action="deletestudent.jsp">
<table width="100%" border="1" cellpadding="2" cellspacing="0" height="6">
<tr bgcolor="#efefef">
<td width="8%" height="18">
<div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="1">Date</font></div>
</td>
<td width="10%" height="18">
<div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="1">Student
ID</font></div>
</td>
<td width="11%" height="18">
<div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="1">Student
Name</font></div>
</td>
<td width="15%" height="18">
<div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="1">Email
Address</font></div>
</td>
<td width="13%" height="18">
<div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="1">Course
Taken</font></div>
</td>
<td width="15%" height="18">
<div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="1">Course
Uncompleted</font></div>
</td>
<td width="6%" height="18">
<div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="1">Qualified</font></div>
</td>
<td width="6%" height="18">
<div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="1">Applied</font></div>
</td>
<td width="6%" height="18">
<div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="1">Accepted</font></div>
</td>
<td width="6%" height="18">
<div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="1">Delete</font></div>
</td>
</tr>
<%
          String separator = "-";
          String sYear = request.getParameter("startYear");
          String sMonth= request.getParameter("startMonth");
          String sDate = request.getParameter("startDate");
          String startTime = sYear+separator+sMonth+separator+sDate;
          String eYear = request.getParameter("endYear");
          String eMonth= request.getParameter("endMonth");
          String eDate= request.getParameter("endDate");
          String endTime = eYear+separator+eMonth+separator+eDate;
     Class.forName("org.gjt.mm.mysql.Driver").newInstance();
     connection = DriverManager.getConnection(connectionURL, "", "");
     statement = connection.createStatement();
     rs=statement.executeQuery("SELECT students.studentid, students.firstname, students.lastname, students.email," +
                                   "btechpre.cisy1212, btechpre.cisy2311, btechpre.cisy2313, btechpre.cisy2314, btechpre.cisy2315," +
                                   "credential.recdate, credential.qualified, credential.accepted, credential.applied FROM students, btechpre, credential " +
"WHERE students.studentid=credential.studentid AND credential.studentid=btechpre.studentid AND credential.recdate BETWEEN '"+startTime+"' AND '"+endTime+"' ");
     //SELECT DATE_FORMAT(date,'%M %d, %Y') from data
     while(rs.next())
          String cisy1212=rs.getString("cisy1212");
          String cisy2311=rs.getString("cisy2311");
          String cisy2313=rs.getString("cisy2313");
          String cisy2314=rs.getString("cisy2314");
          String cisy2315=rs.getString("cisy2315");
%>
<tr bgcolor="#efefef">
<td width="8%" height="18"><%= rs.getString("recdate")%></td>
<td width="10%" height="18"><%= rs.getString("studentid")%>
<input type="hidden" name="studentid" value="<%= rs.getString("studentid")%>"></td>
<td width="11%" height="18"><%=rs.getString("firstname")%>
<%=rs.getString("lastname")%></td>
<td width="15%" height="18"><a href="mailto:<%=rs.getString(email")%">"><%=rs.getString("email")%></a></td>
     <td width="13%" height="18"> <%
               if((cisy1212!=null) || (cisy2311 !=null) ||(cisy2313!=null) ||(cisy2314!=null) ||(cisy2315!=null))
               %> <%=cisy1212%>,<%=cisy2311%>,<%=cisy2313%>,<%=cisy2314%>,<%=cisy2315%></td>           
     <td width="15%" height="18"><%=rs.getString("cisy1212")%>,<%=rs.getString("cisy2311")%>,<%=rs.getString("cisy2313")%>,<%=rs.getString("cisy2314")%>,<%=rs.getString("cisy2315")%></td>
<td width="6%" height="18"><%=rs.getString("qualified")%></td>
<td width="6%" height="18"><%=rs.getString("applied")%></td>
<td width="6%" height="18"><%=rs.getString("accepted")%></td>
<td width="6%" height="18">
<input style="BACKGROUND-IMAGE: url(file://C:\jakarta-tomcat-4\webapps\CISY2415\images\trash2.gif); WIDTH: 28px; HEIGHT: 36px; BACKGROUND-COLOR: #efefef" type=submit name=delete size=14 onClick="alert('Do you want to delete the record?')">
</td>
</tr>
<% } //end while()
     //clean up
     if(rs!=null) rs.close();
     if(statement!=null) statement.close();
     if(connection!=null) connection.close();
%>
</table>
</form>
</body>
</html>
</a>

You can avoid all of this cumbersome code by using tags:
http://www.dotjonline.com/taglib/grid.jsp

Similar Messages

  • Disabling the display maximum rows per page

    My project include many reports with table view, displaying 100 rows.
    There is always arrows icon with the option to display maximum rows per page.
    If user click on that option the OBIEE crashed, since there are a lot of rows.
    I cannot decrese this number since all rows are required for other charts views.
    a. Is there a way to set this parameter only for the table view?
    b. Is there a way to disable this icon or not presenting it to the user?
    c. Is there global way to coonfigure the default displayed rows number (e.g. from 100 to 20)?

    unfortunately, you are limited to the SRW built-ins in Reports as far as setting object properties is concerned. I have checked this with the Metalink staff and I did get an admission out of them that this is true.
    You can set the property in the property palette, but I'm not sure that this helps you as I take it you have a condition you would like to implement. I wish I could help you further, but Reports is limited in some areas, and setting object properties programmatically is one of them.

  • Google Advanced Search only displays 10 Results per page in Firefox 3.6.10

    In Google Advanced Search, choose any value for Results per page greater than 10 and do a search. When using Firefox 3.6.10, only 10 results are displayed on each page of results. 10 results per page is the Google default, and the Results per page selection apparently has no effect.
    This problem also happens in Google Chrome 6.0.472.63.
    The Results per page feature of Google Advanced Search is working properly in other browsers, such as Safari 4.1.2 on a PowerPC Mac and IE 7.0.5730.13 and IE 6.0.2900.5512.xpsp3_gdr.100427-1636 on a PC running Windows XP

    Google recently made some changes to the Google search site with the addition of Instant search and that made the setting of the number of results in the Google settings to stop working.<br />
    <br />
    If Instant search is enabled on the [http://www.google.com/preferences?hl=en Google Search settings] page (link at the top right) then you only get 10 results.<br />
    You have to disable instant search and reload the result page and then set the number of results to your preferred choice.<br />
    It may not work if you make both changes at the same time.<br />
    <br />
    There is a link directly to the right of the Google search field on the Google results page.<br />
    That is a button with a drop down list: Instant is On/Off.<br />

  • OBIEE 11g: Report not displaying maximum rows per page

    I have an OBIEE report that is not displaying the maximum rows per page. When I click on the UP/DOWN arrow at the bottom of the report there is no change.

    Hi,
    Refer the below link.
    http://satyaobieesolutions.blogspot.in/2012/08/limit-row-in-table-and-graph-in-initial.html
    OR,
    https://supporthtml.oracle.com/ep/faces/secure/km/DocumentDisplay.jspx?id=1198961.1
    Add the following to your instanceconfig and then restart the presentation service.
    file path
    D:\Oracle\Middleware\instances\instance1\config\OracleBIPresentationServicesComponent\coreapplication_obips1\instanceconfig.xml just add below lines
    <Views>
    <Pivot>
    <MaxCells>6500000</MaxCells>
    <MaxVisibleColumns>100</MaxVisibleColumns>
    <MaxVisiblePages>100</MaxVisiblePages>
    <MaxVisibleRows>65000</MaxVisibleRows>
    <MaxVisibleSections>25</MaxVisibleSections>
    <DefaultRowsDisplayed>500</DefaultRowsDisplayed>
    <!--This Configuration setting is managed by Oracle Business Intelligence Enterprise Manager--><DefaultRowsDisplayedInDelivery>75</DefaultRowsDisplayedInDelivery>
    <!--This Configuration setting is managed by Oracle Business Intelligence Enterprise Manager--><DefaultRowsDisplayedInDownload>65000</DefaultRowsDisplayedInDownload>
    <!--This Configuration setting is managed by Oracle Business Intelligence Enterprise Manager--><DisableAutoPreview>false</DisableAutoPreview>
    </Pivot>
    <Table>
    <MaxCells>6500000</MaxCells>
    <MaxVisiblePages>100</MaxVisiblePages>
    <MaxVisibleRows>65000</MaxVisibleRows>
    <MaxVisibleSections>25</MaxVisibleSections>
    <DefaultRowsDisplayed>500</DefaultRowsDisplayed>
    <!--This Configuration setting is managed by Oracle Business Intelligence Enterprise Manager--><DefaultRowsDisplayedInDelivery>75</DefaultRowsDisplayedInDelivery>
    <!--This Configuration setting is managed by Oracle Business Intelligence Enterprise Manager--><DefaultRowsDisplayedInDownload>65000</DefaultRowsDisplayedInDownload>
    </Table>
    </Views>
    Hope this help's
    Thanks,
    Satya

  • On tab pages, where tabs are children of home page ... how2insert rows?

    We show the key on the parent tab ... we navigate to child tabs, and proper child rows are all there.
    We click insert and it seems to allow entry. We click Submit, we get error that the parent key field is blank, so can't do insert.
    So ... how to make that parent key persist on each child tab?
    The tabs know the key is there, because they successfully show the children, and only the children. And when you click on a different parent on the row listing of the main home page, then go to child, only that new row's children show up (my intern did the links, I can't speak for precisely how he did this, but we're talking meat and potatoes, not wizardry).
    Any records entered on a child tab should be a child of the clicked home parent, and no other record (one must start with parent before going to child) ...
    Is there a way to get the parent key to persist?
    (child tabs typically have two columns making up the primary key, the parent key (as a foreign key) and something unique to that tab ... e.g., line number, or xref code, or id_link ... these tables / keys all work just fine at the SQLplus level and via Oracle Forms, so data model per se is fine.)
    Any / all clues / info / links to docs will be met with much gratitude.
    Suzanne

    Suzanne:
    It would make it easier for your problem to be understood/resolved if you could create a example of the issue you are encountering at the OTN APEX site.
    Given the information you have provided, and assuming that the 'DML' for child records is handled by the standard APEX Automatic DML processing page process, I'd suggest you take a look at the definition of this process and determine how the PK for the child record is obtained.
    Varad

  • Why is it that often when i attempt to send an email from some pages where you are meant to say, click on the words "email me" instead of taking you to an email form or window it begins opening endless tabs to infinity & i am forced to forcequit firefox?

    i click on "email me" or "send me an email" & it just begins opening tabs endlessly & so fast i have to force firefox to quit & not save my tabs & windows- its happened on many sites

    i dont understand your answer... its not my email that isnt working right, my email works fine... its just when i am on a site like for instance i was attempting to write to one of my congress people & when i clicked on "email me" boom! there it was... firefox just started making endless tabs without stopping...

  • I am having problems with certain pages on our churches website. It is the pages where pictures are posted. Any ideas what can cause this?

    Our church website has 2 links with pictures. I am not able to click on the link and see them. This is the only site I have a problem with. I have tried to change my settings but nothing seems to help.

    Do you ave ad-blocking software or use an extension like Adblock Plus?
    If a link has '''ads''' (uplo'''ads''') in the file path then that is the first to check.
    See [[Images or animations do not show]]

  • Number of rows displayed per page in an interactive report

    Hi,
    I'd like to know if it's possible to change the values of the select list called 'Rows' in an interactive report (which is displayed in the search bar).
    Indeed, I want to display 16 rows per page and I can only choose among the values 1, 5, 10, 15, 20, 25, 30, 50, 100, 200...
    Thank you for your reply.
    Emilie.

    Hi Tobias,
    Thank you for your help.
    I had already tried this but it's not what I want. What your are saying only limits the values in the select list (for example, if I set to 16, I can't choose values higher than 16 in the select list 'Rows' of the search bar).
    I want to limit the number of rows displayed in the interactive report to 16 per page.
    Any other idea?
    Emilie.
    Hi Emilie,
    Go: Home>Application Builder>Application 301>Page 51>Interactive Report Attributes>Search Bar>Maximum Rows Per Page
    Set to = 16
    Oracle help description: Defines the maximum number to display in Rows Per Page Selector in the search bar.
    Greetings,
    Tobias

  • Why does Firefox no longer display .php suffix web pages which are in my Mac?

    I have a question about Firefox 14.0.1 displaying .php suffix web page files which are in a Mac running Mountain Lion OS 10.8. In eaarlier versions of Mac OS, for example 10.4.7, I was able to see properly displayed web page files with .html and .php suffixes when those web page files were in my computer. I refer to seeing the page as it should properly display, not seeing the source code. If a page had a .php suffix, the browser displayed the page properly although any php scripts embedded in that page were ignored.
    Apple occasionallly updated its OS and browser makers occasionally updated browsers. One day, I noticed that Safari no longer displayed web page files in my Mac if those pages had a .php suffix. However, Firefox and other browsers continued to display web page files with .php suffixes although the embedded php scripts were ignored.
    Now, I have Mountain Lion in iMac.
    I can no longer see .php suffix web page files in my computer regarless of the browser I use. No browser displays those pages.
    A .php suffix web page file which Firefox and other browsers display in 10.4.7 does not display in 10.8 if that web page file is in the computer.
    In my computer, I have html and php suffix web page files I want to see using a browser. The files I want to see and the browser both are in my computer. Html files display perfectly with one exception: if php scripts are embedded in the html files, the scripts are ignored. A file the name of which ends with ".php" will not be displayed regardless of whether there is a php script in the file. Safari displays the source code only. Chrome does not display the file at all. Firefox and SeaMonkey, which displayed .php suffix web page files in earlier versions of the Mac OSm now respond to such pages by providing a dialog box which seems to assume that the file is about to be downloaded from the Internet. The dialog box asks me if I want to use the browser to open the file or if I want to save it to disk. The file is on the disk at the time, and the computer is disconnected from the Internet. I click that I want to use the browser to open the file. Then the dialong box reopens with the same question. This happens over and over. I never get to see a web page file in my computer the name of which ends with ".php". With Firefox 14.0.1, I can see .php suffix web pages which are on the Internet or in a 10.4.7 Mac but not in a 10.8 Mac. Did I miconfigure Firefox? It seems unlikely that Firefox lost the ability to display pages in Mac OS 10.8 which it displays in `10.4.7. How can I solve this web page display problem?

    Haroon mentions two solutions. I used the easier one, which is to start the Apache webserver already in Mountain Lion and to enable the php already in Mountain Lion. It worked. I see the file correctly displayed with html, css, and php. I see the page by using Firefox. I enter an address in the address bar. For example, the address might be "localhost/example/example.php". I cannot see the page by using Firefox's "Open File ..." menu option or by dragging the file's icon onto Firefox's icon. I tried using your solution also but was unable to find the specific preference to modify. I found the page of preferences which may be modified but I could not find the one I need. I found a list of descriptions of the preferences at http://kb.mozillazine.org/Firefox_:_FAQs_:_About:config_Entries
    but I could not find the specific preference which I need.
    By the way, to enable loading the php module, one uncomments a line of code by deleting the initial "#" character, and one does that by pressing control key and "P" key while the cursor is over the "#" character.
    Also by the way, when I use Firefox or Safari to look at the Apache web directory in which my files are, the files are listed case sensitively. For example, the files are listed: Ace, Zygote, bar. This is because lower case follows upper case. THis annoys me. I prefer case insensitive listing. When I llok directly athe directory without using a browser, the files are listed case insensitively. For example, they are listed: Ace, bar, Zygote. I guess taht Apache is doing this.

  • Problem with number of rows per page ....

    Hi,
    I have a updatable report .This is a dynamic report which can have more than 100 columns depending on the table name .I have set number of rows =15 in layout and pagination .Its displaying 15 rows per page .My requirement is 50 rows per page .So i changed to 50 in layout and pagination .Its displaying 50 rows per page .But when i select some button in that page or move to other tab i get "page not found "error .If i replace back to 15 rows per page ,everything works fine ...Dont know why this is happening ..Please help..
    Thanks in advance ....

    Hello,
    You can use Maximum Records per page property of Repeating
    Frame.
    Adi

  • How to give no of lines per page in alv report

    hi
    could anybody tell me
    how to give no of lines per page in alv report
    i need bottom of page too
    if possible plz send the code too
    it ll be very helpful to me
    thanx
    kals.

    Hi,
    This is possible, using some of the events in the ALV.
    You could use AFTER_LINE_OUTPUT event and call you form after say, a certain line count is reached on the list output.
      MOVE 'AFTER_LINE_OUTPUT' TO gw_event-name.
      MOVE 'AFTER_LINE_OUTPUT' TO gw_event-form.
      APPEND gw_event TO gt_events.
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
           EXPORTING
                it_events                = gt_events[]
    and define the form for each event as follows - this would be a dynamic call by the ALV.
    *&      Form  after_line_output
    *       Form for the After Line Output Event in the internal table
    *      --> rs_lineinfo
    FORM after_line_output USING rs_lineinfo TYPE slis_lineinfo.
      IF sy-linno eq v_linno.          "Defaulted value for line count
        perform write_footer.
        NEW-PAGE.
      ENDIF.
    ENDFORM.                    " after_line_output
    For lines per page:
    rs_lineinfo-tabindex would give you the index of the current line in the list, which you could use to read the t_outtab table, and reduce the line count of items displayed on the earlier page.
    There are a few other events too, like BEFORE_LINE_OUTPUT and END_OF_LIST which you can use as required and print the data.
    Regards,
    Anil.

  • Keynote '09 Handouts - Problem printing 6 slides per page

    With Keynote '09, I'd like to print handouts of 6 slides per page, where the slides are of reasonable size, take up most of the space on the page, and are not oriented in a single vertical column. I used to be able to accomplish this with earlier versions of Keynote, but can't figure it out in Keynote '09. Anyone know the secret? Seems like a major flaw in the software.

    In the Print dialog box, tell Keynote to print Individual Slides. Then go to Layout and tell the printer to print 6 slides per page and select the layout option that you would like.

  • 1099 Two forms per page

    We are looking for a PDF template solution where we can print two 1099 forms per page. I can see there is an Enhancement Request BUG 7604141 but we need a fix sooner than that may become available.

    Our organization is having this issue with the new Adobe forms that were released. The 1099 smartforms print 2 forms per page but the 1099 adobe forms are only printing 1 form per the OSS  note that was just released - Note: 1949022. Is there somewhere in config that we can select to print 2 per page?
    We are using IDWTCERT_US_1099MISC which will print just 1 form per page ( we also had to make some adjustments because the top gets cut off...)
    form IDWTCERT_US_1099MISC1 will print 2 forms per page but it is not a new vendor that prints on the form it is a copy of the first on the page
    The 1099 Interest adobe form prints 2 per page with IDWTCERT_US_1099INT - this is curious too because the smartform prints 3 forms per page
    Has anyone else experienced this issue? Do you know how to resolve it?I am considering putting in a problem report.
    Thank you

  • Displaying output in new pages

    Hi Frds
    In my ABAP report output i wants to display 20 lines per pages and heading should be common to all pages.Kindly tell me how to do to ?
    Thanks
    Pari Vendhan.R

    REPORT <Report Name> NO STANDARD PAGE HEADING
               LINE-COUNT <No of Lines> LINE-SIZE <No of Chars>.
    In your case line count is 20 .
    This addition specifies the page length for the basic list of the program to page_lines lines and fills the system field sy-linct with this value. If the LINE-COUNT is not specifed, and if page_lines are less than or equal to 0 or greater than 60,000, then the page length is set internally to 60,000. This setting overwrites the passed value of the like-named LINE-SIZE addition to the statement SUBMIT and can be overwritten during list creation with the like-named LINE-COUNT addition to the statement NEW-PAGE.
    If you optionally specify a number for footer_lines, a corresponding number of lines are reserved for the page footer, which can be described in the event block END-OF-PAGE.
    You must specify page_lines and footer_lines as numeric literals.
    Notes
    For screen lists, you should use the standard value since, as a rule, page breaks defaulted through LINE-COUNT are not adjusted to the window size.
    You should also use the standard value for print lists, so that you can still select the page size on a printer-specific basis. A print list should be created in such a way so that it can handle every page size.
    Specifying a fixed line count is only useful for form-type lists with a fixed page layout. Here, however, you should always check whether such forms can be created by other means, such as SAPScript forms.
    Example
    The page length of the basic list is set to 65 lines, eight of which are reserved for the page footer. The line width is 132 characters.
    REPORT z_myreport LINE-COUNT 65(8) LINE-SIZE 132.
    LINE-SIZE width
    Effect
    This addition specifies the line width of the basic list and details list of the program to width characters, and sets the system field sy-linsz to this value. The line width determines the number of characters in the line buffer as well as the number of columns in the list displayed. The value width must be a positive numeric literal. The maximum line width is 1,023 characters.
    When the LINE-SIZE is not specified, the line width of the basic list is set to a standard width based on the window width of the current Dynpro, but is at least as wide as a standard size SAP window. For the standard width, the contents of sy-linsz is 0. The LINE-SIZE overwrites the value of the like-named LINE-SIZE addition to the statement SUBMIT and can be overwritten during list creation with the like-named LINE-SIZE addition to the statement NEW-PAGE.
    Note
    The current maximum line width is stored in the constants slist_max_linesize of the type group SLIST. Also defined there is a type slist_max_listline of type c with length slist_max_linesize.
    To print header use the event TOP-OF-PAGE.
    This statement defines an event block whose event is triggered by the ABAP runtime environment during the creation of a list. This occurs when a new page is started - that is, immediately before the first line in a new page is to be output. All list outputs that take place in the event block are placed below the standard page header of the list. You cannot output more lines than are available in the page within the event block. The NEW-PAGE statement is ignored within this event block.

  • Show more products per page in catalog

    I'm trying to set up my catalog and it's only displaying 12 items per page leaving me with 13 pages of items. Is there any way for me to have it display 60 items per page or something similar?
    I got it to display 6 items across using {tag_productlist,6} but can't get it to display a set amount vertically.

    Edit cause provided info was wrong..... sorry I got mix up with other module layouts...
    I am not completly sure if I understood what are you trying to do. But I think that with this you may manage what you trying.
    Business Catalyst Help | Using custom templates for modules
    You could show your last post using a specific template.
    Hope it helps

Maybe you are looking for

  • Cannot view streaming media such as keynote addresses

    I have followed the set up instructions as given on the Apple pages (QT Preferences, setting my transport to HTTP and port 80) but I still cannot view any of the streaming media from the Apple site, seminars etc. Are there further settings I can adju

  • IMac Frozen URGENT!

    Hi, My iMac 2008 has frozen today whilst browsing the internet, I was using safari and iMovie was open in the background, I am running OSX Mavericks and the latest version of iMovie. I recently sent the mac to apple for a new hard drive due to this i

  • Factory calender importance in Sales Organisation.

    Hi Experts, Hope you all doing Gr8t. Please let me know the importance of specifying Factory calender while defining the Sales Orgination. Thanks & Regards, Smithun.

  • IS to HTTP

    Hi all, Can anyone please clarify me the following: 1 I triggered a message from IS to HTTP site using HTTP adapter.If the required HTTP site is not available, wt about the triggered message? 2.If the message is saved back in IS where does the messag

  • Thread is Not Working in Windows Phone 8.1 Universal App

    This code is working in WP8.0 When Coming to WP8.1 Thread class is Not Working Thread SongThread = new Thread(() => List<QuizList> showsubjects = QuizManager.GetsubjectsForWP8(LinkInfo.ShowID.ToString()/*, false*/); SongThread.Start();