'datapagesize' Example : datapagesize « Object « HTML / CSS

Home
HTML / CSS
1.CSS
2.CSS Controls
3.Form
4.IE Firefox
5.Layout
6.Marquee Attributes
7.Meta Tags
8.Microsoft Attributes
9.Object
10.Reference
11.Style Basics
12.Tags
13.Templates
14.XML
HTML / CSS » Object » datapagesize 
'datapagesize' Example

    
<HTML>
<BODY>
<table bgcolor="#00ffff" 
       border=datasrc="#dataSrc" 
       datapagesize="10">
       <tr>
          <td>
          <input type=textbox size=30 value="This is the first record" datafld="firstname"></td>
       </tr>
       <tr>
          <td>
          <input type=textbox size=30 value="This is the second record" datafld="lastname"></td>
       </tr>
</table>
<object id="dataSrc" 
        classid="clsid:333C7BC4-460F-11D0-BC04-0080C7055A83">
        <param name="DataURL" value="myfile.csv">
        <param name="UseHeader" value="True">
        <param name="TextQualifier" value="'">

</object>
</object>
</BODY>
</HTML>  
    
    
    
<!-- myfile.csv  -->
<!--
firstname:string,lastname:string,birth:int
Joe,Wang,1978
Jason,Lee,1956
Tony,Zhang,1987
-->    
      
      
Related examples in the same category
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.