Displaying information from Numbers in iWeb

Is there a way to display information from Numbers in iWeb? I am trying to create a FSBO site, and I imagine a scenario where I have all the houses from a table in Numbers listed with hyperlinks to their respective web pages.
If this is not a good possibility, anyone know of another technology to get this done?
Thanks,
Phil

i've got an application, written in C++ which gets some information from oracle database (...) i write some information to xml file and i want to display in my browser using APEX/Application Builder.
So i wrote application in java that retrieves information from xml file and now i want to display to it in web browser using APEXIf the information you want to display is already in an Oracle database, you can just use Apex to retrieve and display the information.
Instead of this:
Oracle database --> C++ program --> XML file --> Java program --> ??? --> web browserJust do this:
Oracle database --> Apex --> web browser- Morten
http://ora-00001.blogspot.com

Similar Messages

  • Create a procedure which requires displaying information from two tables

    What if we want to create a procedure which requires displaying information from two tables. In this situation,
    I need to display all the details of an employee from an 'emp' table based on the deptno. and also their salary information which is
    stored in "Salgrade" Table. Is the use of "And" the correct way of using it?
    Do I need to declare all the attributes before begin or I can just access them directly? Thanks
    Create Procedure findDept
    ( I_deptno IN number
    ) As
    Begin
    Select Ename, Job, MGR, Hiredate, Sal, Comm, Dept_no from emp and exp, grade , location from salgrade where dept_no
    = I_Deptno;
    Exception
    When NO_Data_Found then
    DBMS_Output.Put_Line(' Department not found"|| I_deptno);
    End findDept;

    Hi,
    Besides Qwerty's remark, you've also got a quoting error:
    Change
    DBMS_Output.Put_Line(' Department not found"|| I_deptno);
    {code}
    into
    {code}
    dbms_output.put_line(' Department not found: '|| i_deptno);
    {code}
    Which leads to the question:
    What do you want to do when a record is found?
    Display it?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Displaying information from two sources

    I want to display current Citrix-sessions and the following AD-information for the users:
    Name (From AD), streetAddress (From AD), physicalDeliveryOfficeName (From AD), DeviceId (From Citrix), LaunchedViaHostName (From Citrix)
    These lines get me the Citrix session information I need:
    Asnp Citrix.*
    Import-Module ActiveDirectory
    $users = Get-BrokerSession |select -uniq UserUPN, DeviceId, LaunchedViaHostName
    After those commands I have the following information in an array $users:
    Because I now have the UserUPN information available, I should be able to map it to AD accounts to get more information. I try to get the information displayed with these commands:
    foreach ($i in $users) {
    Get-ADUser -LDAPFilter "(userprincipalname=$i.UserUPN)" -properties physicalDeliveryOfficeName, streetAddress | select name, streetAddress, physicalDeliveryOfficeName, $i.DeviceId, $i.LaunchedViaHostName |sort-object physicalDeliveryOfficeName
    But I’ll get an error:
    select : The value of a parameter was null; one of the following types was expected: {System.String, System.Management.
    Automation.ScriptBlock}.
    At line:2 char:113
    + Get-ADUser -LDAPFilter "(userprincipalname=$i.UserUPN)" -properties physicalDeli ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo         
    : InvalidArgument: (:) [Select-Object], NotSupportedException
        + FullyQualifiedErrorId : DictionaryKeyUnknownType,Microsoft.PowerShell.Commands.SelectObjectCommand
    If I use this command, it works, but then I cannot display DeviceId and LaunchedViaHostName information:
    $users.userupn | %{ Get-ADUser -LDAPFilter "(userprincipalname=$_)" -properties physicalDeliveryOfficeName, streetAddress} | select name, streetAddress, physicalDeliveryOfficeName |sort-object physicalDeliveryOfficeName

    In your code change this
    foreach ($i in $users.UserUPN) {
    Get-ADUser -LDAPFilter "(userprincipalname=$i)" -properties physicalDeliveryOfficeName, streetAddress | select name, streetAddress, physicalDeliveryOfficeName, $i.DeviceId, $i.LaunchedViaHostName |sort-object physicalDeliveryOfficeName
    Import-Module ActiveDirectory
    $users = Get-BrokerSession |select -uniq UserUPN, DeviceId, LaunchedViaHostName
    foreach ($i in $users.UserUPN) {
    Get-ADUser -LDAPFilter "(userprincipalname=$i)" -properties physicalDeliveryOfficeName, streetAddress | select name, streetAddress, physicalDeliveryOfficeName, $i.DeviceId, $i.LaunchedViaHostName |sort-object physicalDeliveryOfficeName
    Regards Chen V [MCTS SharePoint 2010]

  • SSRS - Is there a multi thread safe way of displaying information from a DataSet in a Report Header?

     In order to dynamically display data in the Report Header based in the current record of the Dataset, we started using Shared Variables, we initially used ReportItems!SomeTextbox.Value, but we noticed that when SomeTextbox was not rendered in the body
    (usually because a comment section grow to occupy most of the page if not more than one page), then the ReportItem printed a blank/null value.
    So, a method was defined in the Code section of the report that would set the value to the shared variable:
    public shared Params as String
    public shared Function SetValues(Param as String ) as String
    Params = Param
    Return Params 
    End Function
    Which would be called in the detail section of the tablix, then in the header a textbox would hold the following expression:
    =Code.Params
    This worked beautifully since, it now didn't mattered that the body section didn't had the SetValues call, the variable persited and the Header displayed the correct value. Our problem now is that when the report is being called in different threads with
    different data, the variable being shared/static gets modified by all the reports being run at the same time. 
    So far I've tried several things:
    - The variables need to be shared, otherwise the value set in the Body can't be seen by the header.
    - Using Hashtables behaves exactly like the ReportItem option.
    - Using a C# DLL with non static variables to take care of this, didn't work because apparently when the DLL is being called by the Body generates a different instance of the DLL than when it's called from the header.
    So is there a way to deal with this issue in a multi thread safe way?
    Thanks in advance!
     

    Hi Angel,
    Per my understanding that you want to dynamic display the group data in the report header, you have set page break based on the group, so when click to the next page, the report hearder will change according to the value in the group, when you are using
    the shared variables you got the multiple thread safe problem, right?
    I have tested on my local environment and can reproduce the issue, according to the multiple safe problem the better way is to use the harshtable behaves in the custom code,  you have mentioned that you have tryied touse the harshtable but finally got
    the same result as using the ReportItem!TextBox.Value, the problem can be cuased by the logic of the code that not works fine.
    Please reference to the custom code below which works fine and can get all the expect value display on every page:
    Shared ht As System.Collections.Hashtable = New System.Collections.Hashtable
    Public Function SetGroupHeader( ByVal group As Object _
    ,ByRef groupName As String _
    ,ByRef userID As String) As String
    Dim key As String = groupName & userID
    If Not group Is Nothing Then
    Dim g As String = CType(group, String)
    If Not (ht.ContainsKey(key)) Then
    ' must be the first pass so set the current group to group
    ht.Add(key, g)
    Else
    If Not (ht(key).Equals(g)) Then
    ht(key) = g
    End If
    End If
    End If
    Return ht(key)
    End Function
    Using this exprssion in the textbox of the reportheader:
    =Code.SetGroupHeader(ReportItems!Language.Value,"GroupName", User!UserID)
    Links belowe about the hashtable and the mutiple threads safe problem for your reference:
    http://stackoverflow.com/questions/2067537/ssrs-code-shared-variables-and-simultaneous-report-execution
    http://sqlserverbiblog.wordpress.com/2011/10/10/using-custom-code-functions-in-reporting-services-reports/
    If you still have any problem, please feel free to ask.
    Regards
    Vicky Liu

  • How to display information from database using drop down list in JSP?

    Hi all.
    Like the tile above suggest, I'm having difficulty in obtaining the data as well as displaying them in a drop down list.
    For example: If i were to have the following in my database:
    SerialNo Food
    1 Bread
    2 Milk
    3 Butter
    The drop down list should look like the following:
    [Bread][\/]
    [Milk]
    [Butter]
    How do i go around coding it in JSP?
    Thanks in advance.
    C.K

    Hai Please try the following code
    You have to make some changes according to your system i am using
    MSSqlserver Driver change the class name and the connection string
    for your need
    <HTML>
    <HEAD>
    <%@ page language="java" import="java.sql.*"%>
    <LINK href="../theme/Master.css" rel="stylesheet" type="text/css">
    <TITLE>ListDrop.jsp</TITLE>
    <%!Connection con;
         %>
    </HEAD>
    <BODY>
    <select>
         <%
              try {
                   Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");\\Here you specify the Class Nale
                   con = DriverManager
                             .getConnection(
                                       "jdbc:microsoft:sqlserver://javaserver:1433;DatabaseName=karthi",
                                       "sa", "sa");\\here Connection string
                   ResultSet rs;
                   Statement st = con.createStatement();
                   rs = st.executeQuery("select SerialNo,Food from Foods");
                   while (rs.next()) {
    %>
         <option value='<%= rs.getString("SerialNo") %>'><%= rs.getString("Food")%></option>
         <%
              } catch (Exception e) {
                   e.printStackTrace();
    %>
    </select>
    </BODY>
    </HTML>

  • How do I create a merged document using information from Numbers?

    I am new to using Mac and am trying to create a mail merged document.  I do not seem to have the same options in my Inspector that are referenced in the tutorial I found online.  Can anyone help? 

    That is because these are removed from Pages 5.
    Pages 5 is a much cut down version from the previous Pages '09.
    Pages 5 is designed to work better with the less featured iPad version.
    Peter

  • When I connect my iTouch to my PC (windows 7) an error message is displayed reading "iTunes was unable to load dataclass information from sync services. Reconnect or try again later".

    When I connect my iTouch to my PC (windows 7) an error message is displayed reading "iTunes was unable to load dataclass information from sync services. Reconnect or try again later". I have completely uninstalled and then reinstalled iTunes. I have also completely reset my iTouch to factory defaults. I have even followed all the advice provided previously to other forum member with the same problem. Nothing seems to work. Please help me someone.

    I'm getting the same problem with both my IPad 4 and iPhone 5
    Just started a few weeks back, Since then I have had two Itunes updates.
    Is this something Apple is aware of and trying to fix?

  • Display data from CSV file in iWeb page

    Hi,
    I like to display data from a CSV file in iWeb page if a date value from CSV file matches todays value from the system. Here is an example.
    CSV data values
    01/20/2011,Sunny,87
    01/21/2011,Cloudy,100
    01/22/2011,Rainy,60
    If today's date value is 01/21/2011 the page should display 01/21/2011 Cloudy 100 in a tabular format.
    Appreciate your help in providing HTML code for this issue.
    Thanks

    I suspect there is a soft return in the excel database somewhere that can't be seen. Take the csv/txt file into notepad and look for a line that starts oddly compared to the others.
    I haven't had luck removing soft returns from excel files so I do this a rather odd way. I take the excel file into InDesign as a table, and then use find/change to replace any soft returns with nothing, then convert the text to table and then export the text out again by going export, and selecting text from the dropdown menu.
    For my money, I always save tab delimited text files from excel so that if a field does contain commas, it doesn't "trick" indesign into thinking a new field is beginning or not... instead the field delimiters are tabs and they are unlikely to have been used in the excel database.
    If you do choose to use this indesign import method of mine to clean up the database, i also noticed two things in your screengrab: first was that some fields have spaces at the start of the text... easy enough to fix with a GREP that looks for ^\s (start of a sentence followed by a space) and replace with nothing. The second thing is the T&C field that all entries (at least in the screengrab) all start the same – if all entries in the database start the same, couldn't that line be in the indesign file? Its only a small detail I know.

  • My iphone 4s is importing contact information from FB and my email account.  When I pull up my contacts it only shows e-mail information and the phone numbers have disappeared.  How do I get my old contact list back with the phone numbers?

    My iphone 4s is importing contact information from FB and my e-mail account.  When I try to look at my contact list it is showing everyone I have on those lists and it only shows their email addresses.  The phone numbers for my contacts have disappeared and I don't know how to get them back.

        Hi macmac57. I don't memorize my numbers anymore, so I know how important it is to have all your contacts on your phone at all times. Did an update occur or a new application download when your contacts disappeared? Have you been backing up your device with your computer? You can try to restore your contacts from your last backup. http://support.apple.com/kb/HT1414
    Are you syncing your iPhone between multiple computers? This can sometimes create issues with your contacts. http://support.apple.com/kb/TS1474
    If you were already using iCloud to back up your contacts, check out http://support.apple.com/kb/TS3998 for some great tips from Apple.
    I do hope this has been helpful for you to restore your contacts.
    JenniferH_VZW
    Please follow us on Twitter @vzwsupport

  • How to extract information from client security certificates and display it

    Hi guys,
    just wanted to know is it possible to extract information from an digital security certificate and get that displayed on top level navigation of the portal. So for ex. I want to extract the clients name and code and area from where they come from to be displayed on top level.
    thanks
    anton

    RoopeshV wrote:
    Hi,
    The below code shows how to read from txt file and display in the perticular fields.
    Why have you used waveform?
    Regards,
    Roopesh
    There are so many things wrong with this VI, I'm not even sure where to start.
    Hard-coding paths that point to your user folder on the block diagram. What if somebody else tries to run it? They'll get an error. What if somebody tries to run this on Windows 7? They'll get an error. What if somebody tries to run this on a Mac or Linux? They'll get an error.
    Not using Read From Spreadsheet File.
    Use of local variables to populate an array.
    Cannot insert values into an empty array.
    What if there's a line missing from the text file? Now your data will not line up. Your case structure does handle this.
    Also, how does this answer the poster's question?

  • Displaying Information on PLD from Other tables.

    Hi All
    I'll like to know if its possible to display Sales Order information in the Stock Posting List by Ware house .
    I want to pull information from the UDT linked to the Sales Order.
    Thanks

    I am not really sure if this can be achieved. Some times in the PLD when you add a database field the list of tables available for selection might have the tables you need to link and other cases where they are not displayed you could hold the Alt key and press the table selection drop down where all database tables are listed. 
    You may select your table this way. But the problem here is you need to use the relate to link in this newly added field to provide reference a already existing column on a form.
    Suda

  • After ios6 update, I have lost all control of audio via Bluetooth, plus my Bluetooth car radio is no longer displaying track information from the iPhone. Help!

    After ios6 update, I have lost all control of audio via Bluetooth, plus my Bluetooth car radio is no longer displaying track information from the iPhone. Help!

    Hi there,
    You're running an old version of Safari. Before troubleshooting, try updating it to the latest version: 6.0. You can do this by clicking the Apple logo in the top left, then clicking Software update.
    You can also update to the latest version of OS X, 10.8 Mountain Lion, from the Mac App Store for $19.99, which will automatically install Safari 6 as well, but this isn't essential, only reccomended.
    Thanks, let me know if the update helps,
    Nathan

  • When transferring songs from iTunes to phone it was doing it ok then all of a sudden it started to say iTunes cannot pick up information from phone restore to factory settings I am afraid if I do this I will loose all phone numbers pictures and songs anyo

    When transferring music from iTunes to iPhone after about 3 downloads a message come up saying iTunes cannot get information from phone and I should restore phone to factory settings I do not wont to do this because I am worried I will loose all phone contacts ,pictures,and songs anyone know how I can resolve this

    Not a good idea to depend on an iPhone or any cell phone alone for such important data, which can be lost or stolen or damaged beyond repair.
    Contacts are designed to be synced with a supported address book app on your computer and/or there are a number of free email accounts that support syncing contacts and other data over the air such as with an Apple iCloud account, Gmail, Yahoo, and Hotmail.
    Photos/videos in the iPhone's Camera Roll can and should be imported by your computer as with any other digital camera.
    In addition, contacts and photos/videos in the iPhone's Camera Roll are included with the iPhone's backup.

  • Modified display options from HP

    Dear HP,
    I require the second montor connected to this laptop to be 'flipped' to have it's buttons and controls (Wacom Cintiq drawing tablet) on the right hand side but the Intel HD Graphics says this option has been disabled by the manufacturer modifying the display drivers.
    On my HP Pavilion Desktop with Win 8.1 I have this flip option for the display but not for the Compaq/HP laptop with the same OS.
    Could you please tell me how or if it possible to install drivers that will allow the Wacom tablet to be viewed 'flipped'?
    Thank you...
    Chris Doyle

    Hi @willkoo ,
    I have brought your issue to the attention of an appropriate team within HP. They will likely request information from you in order to look up your case details or product serial number. Please look for a private message after the weekend from an identified HP contact. Additionally, keep in mind not to publically post ( serial numbers and case details)
    If you are unfamiliar with how the Forum's private message capability works, you can learn about that here.
    Regards,
    George
    I work for HP

  • Download deleted all information from BB device.

    sofware version  v4.2.0.64
    according to desktop BB that I downloaded recently with my BB device attached at time of download had deleted all information from BB device.  After download I was not aware all information was deleted from device, including all numbers. I deleted the old desktop BB which I had some information, Possibly also backup, and the new download cannot find any pics or backup from other desktop BB.
    thanks

    Hello,
    It sounds like you allowed the BB Desktop Software to perform an update of your BB OS. Doing so often indeed wipes out all data, but the process includes (unless you override it) an automatic backup and restore. Something must have gone wrong in that process. Hopefully the backup file was indeed created and you can use it. Search your entire hard drive for a file with IPD extension (*.IPD)...look at the date/time of the files that come up in the search. Hopefully one was created around the same time you were doing this update. If so, then you can use it to restore:
    KB23680How to back up and restore BlackBerry smartphone data using BlackBerry Desktop Software 6.0
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

Maybe you are looking for