473,770 Members | 1,891 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

New to this type of XML page

I have written some simple XSL pages to extract the data I need but
each device here has a total of 6 keys and within this 6 values a time
stamp and how long until the next data extraction ( 300 seconds ) 5
minutes.

The page starts off with WebBox
Then goes to MeanPublic
How can I extract the "<Firstdata from the 6 Keys for that device ?
My coding so far has only revealled the first key and nothing more.
Mikey

<?xml version="1.0" encoding="utf-8"?><!DOCTYP E WebBox []>
<?xml-stylesheet href="mean200.x sl" type="text/xsl" ?>
<WebBox xmlns:msdata="u rn:schemas-microsoft-com:xml-msdata"
xmlns:xsi="http ://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespace SchemaLocation= "MEAN_200.x sd">
<Info>
<Created>2007-07-05T18:45:19</Created>
<Culture>en-US</Culture>
</Info>
<MeanPublic>
<Key>WR18UW4E:1 564403641:Error </Key>
<First>0</First>
<Last>0</Last>
<Min>0</Min>
<Max>0</Max>
<Mean>0</Mean>
<Base>60</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR18UW4E:1 564403641:Error-Cnt</Key>
<First>214</First>
<Last>214</Last>
<Min>214</Min>
<Max>214</Max>
<Mean>214</Mean>
<Base>60</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR18UW4E:1 564403641:E-Total</Key>
<First>6574.237 04818048</First>
<Last>6574.2461 1484896</Last>
<Min>6574.23704 818048</Min>
<Max>6574.24611 484896</Max>
<Mean>6574.2410 75</Mean>
<Base>60</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR18UW4E:1 564403641:Fac</Key>
<First>59.98</First>
<Last>59.99</Last>
<Min>59.96</Min>
<Max>59.99</Max>
<Mean>59.976667 </Mean>
<Base>60</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR18UW4E:1 564403641:h-Total</Key>
<First>11505.82 1753799</First>
<Last>11505.903 69825</Last>
<Min>11505.8217 53799</Min>
<Max>11505.9036 9825</Max>
<Mean>11505.863 675</Mean>
<Base>60</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR18UW4E:1 564403641:Iac</Key>
<First>886</First>
<Last>1150</Last>
<Min>869</Min>
<Max>1150</Max>
<Mean>972.46666 7</Mean>
<Base>60</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR18UW4E:1 564403641:Ipv</Key>
<First>538</First>
<Last>657</Last>
<Min>524</Min>
<Max>657</Max>
<Mean>580.55</Mean>
<Base>60</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR18UW4E:1 564403641:Mode</Key>
<First>7</First>
<Last>7</Last>
<Min>7</Min>
<Max>7</Max>
<Mean>7</Mean>
<Base>60</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>

Jul 8 '07 #1
2 1822
mi**********@gm ail.com wrote:
I have written some simple XSL pages to extract the data I need but
each device here has a total of 6 keys and within this 6 values a time
stamp and how long until the next data extraction ( 300 seconds ) 5
minutes.

The page starts off with WebBox
Then goes to MeanPublic
How can I extract the "<Firstdata from the 6 Keys for that device ?
My coding so far has only revealled the first key and nothing more.
It is not clear to me what you want to achieve. Do you want to simply
process all those MeanPublic elements and output the First values? Then
use a tempate for those elements e.g.
<xsl:template match="WebBox">
<table>
<thead>
<tr>
<th>Key</th>
<th>First</th>
</tr>
</thead>
<tbody>
<xsl:apply-templates select="MeanPub lic"/>
</tbody>
</table>
</xsl:template>
<xsl:template match="MeanPubl ic">
<tr>
<td><xsl:valu e-of select="Key"/></td>
<td><xsl:valu e-of select="First"/></td>
</tr>
</xsl:template>
--

Martin Honnen
http://JavaScript.FAQTs.com/
Jul 8 '07 #2
On Jul 8, 7:20 am, Martin Honnen <mahotr...@yaho o.dewrote:
mike.luss...@gm ail.com wrote:
I have written some simple XSL pages to extract the data I need but
each device here has a total of 6 keys and within this 6 values a time
stamp and how long until the next data extraction ( 300 seconds ) 5
minutes.
The page starts off with WebBox
Then goes to MeanPublic
How can I extract the "<Firstdata from the 6 Keys for that device ?
My coding so far has only revealled the first key and nothing more.

It is not clear to me what you want to achieve. Do you want to simply
process all those MeanPublic elements and output the First values? Then
use a tempate for those elements e.g.
<xsl:template match="WebBox">
<table>
<thead>
<tr>
<th>Key</th>
<th>First</th>
</tr>
</thead>
<tbody>
<xsl:apply-templates select="MeanPub lic"/>
</tbody>
</table>
</xsl:template>
<xsl:template match="MeanPubl ic">
<tr>
<td><xsl:valu e-of select="Key"/></td>
<td><xsl:valu e-of select="First"/></td>
</tr>
</xsl:template>

--

Martin Honnen
http://JavaScript.FAQTs.com/
Martin,

I tried what you sent me and it is a very close replication to a
senario I tried. It gives me no outyput at all. here is the xml file I
am working with if this helps any. Yes, I am trying to extract all the
keys and all of the first lines of data from the file. Honestly I
think we are both in the right ball park its just missing something.
<?xml version="1.0" encoding="utf-8"?><!DOCTYP E WebBox []>
<?xml-stylesheet href="mean200.x sl" type="text/xsl" ?><WebBox
xmlns:msdata="u rn:schemas-microsoft-com:xml-msdata" xmlns:xsi="http ://
www.w3.org/2001/XMLSchema-instance"
xsi:noNamespace SchemaLocation= "MEAN_200.x sd">
<Info>
<Created>2007-07-05T18:45:19</Created>
<Culture>en-US</Culture>
</Info>
<MeanPublic>
<Key>WR18UW4E:1 564403641:Error </Key>
<First>0</First>
<Last>0</Last>
<Min>0</Min>
<Max>0</Max>
<Mean>0</Mean>
<Base>60</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR18UW4E:1 564403641:Error-Cnt</Key>
<First>214</First>
<Last>214</Last>
<Min>214</Min>
<Max>214</Max>
<Mean>214</Mean>
<Base>60</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR18UW4E:1 564403641:E-Total</Key>
<First>6574.237 04818048</First>
<Last>6574.2461 1484896</Last>
<Min>6574.23704 818048</Min>
<Max>6574.24611 484896</Max>
<Mean>6574.2410 75</Mean>
<Base>60</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR18UW4E:1 564403641:Fac</Key>
<First>59.98</First>
<Last>59.99</Last>
<Min>59.96</Min>
<Max>59.99</Max>
<Mean>59.976667 </Mean>
<Base>60</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR18UW4E:1 564403641:h-Total</Key>
<First>11505.82 1753799</First>
<Last>11505.903 69825</Last>
<Min>11505.8217 53799</Min>
<Max>11505.9036 9825</Max>
<Mean>11505.863 675</Mean>
<Base>60</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR18UW4E:1 564403641:Iac</Key>
<First>886</First>
<Last>1150</Last>
<Min>869</Min>
<Max>1150</Max>
<Mean>972.46666 7</Mean>
<Base>60</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR18UW4E:1 564403641:Ipv</Key>
<First>538</First>
<Last>657</Last>
<Min>524</Min>
<Max>657</Max>
<Mean>580.55</Mean>
<Base>60</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR18UW4E:1 564403641:Mode</Key>
<First>7</First>
<Last>7</Last>
<Min>7</Min>
<Max>7</Max>
<Mean>7</Mean>
<Base>60</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR18UW4E:1 564403641:Pac</Key>
<First>104</First>
<Last>135</Last>
<Min>102</Min>
<Max>135</Max>
<Mean>114.31666 7</Mean>
<Base>60</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR18UW4E:1 564403641:Power On</Key>
<First>1387</First>
<Last>1387</Last>
<Min>1387</Min>
<Max>1387</Max>
<Mean>1387</Mean>
<Base>60</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR18UW4E:1 564403641:Seria l Number</Key>
<First>15644036 41</First>
<Last>156440364 1</Last>
<Min>1564403641 </Min>
<Max>1564403641 </Max>
<Mean>156440364 1</Mean>
<Base>60</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR18UW4E:1 564403641:Vac</Key>
<First>118</First>
<Last>118</Last>
<Min>117</Min>
<Max>118</Max>
<Mean>117.98333 3</Mean>
<Base>60</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR18UW4E:1 564403641:Vpv</Key>
<First>224</First>
<Last>233</Last>
<Min>218</Min>
<Max>236</Max>
<Mean>225.96666 7</Mean>
<Base>60</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR18UW4E:1 564403641:Vpv-_PE</Key>
<First>1</First>
<Last>1</Last>
<Min>1</Min>
<Max>1</Max>
<Mean>1</Mean>
<Base>60</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR18UW4E:1 564403641:Vpv-Setpoint</Key>
<First>225</First>
<Last>234</Last>
<Min>219</Min>
<Max>236</Max>
<Mean>226.5</Mean>
<Base>60</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR18UW4E:1 564403641:Zac</Key>
<First>0</First>
<Last>0</Last>
<Min>0</Min>
<Max>0</Max>
<Mean>0</Mean>
<Base>60</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR25UW8E:1 374125280:Error </Key>
<First>0</First>
<Last>0</Last>
<Min>0</Min>
<Max>0</Max>
<Mean>0</Mean>
<Base>61</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR25UW8E:1 374125280:Error-Cnt</Key>
<First>82</First>
<Last>82</Last>
<Min>82</Min>
<Max>82</Max>
<Mean>82</Mean>
<Base>61</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR25UW8E:1 374125280:E-Total</Key>
<First>8276.322 72193088</First>
<Last>8276.3365 8860032</Last>
<Min>8276.32272 193088</Min>
<Max>8276.33658 860032</Max>
<Mean>8276.3306 43</Mean>
<Base>61</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR25UW8E:1 374125280:Fac</Key>
<First>59.98</First>
<Last>59.98</Last>
<Min>59.96</Min>
<Max>59.99</Max>
<Mean>59.974098 </Mean>
<Base>61</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR25UW8E:1 374125280:Fac-Srr</Key>
<First>59.98</First>
<Last>59.98</Last>
<Min>59.96</Min>
<Max>59.99</Max>
<Mean>59.974098 </Mean>
<Base>61</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR25UW8E:1 374125280:h-Total</Key>
<First>6825.364 1571402</First>
<Last>6825.4486 015914</Last>
<Min>6825.36415 71402</Min>
<Max>6825.44860 15914</Max>
<Mean>6825.4074 36</Mean>
<Base>61</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR25UW8E:1 374125280:Iac</Key>
<First>692</First>
<Last>848</Last>
<Min>648</Min>
<Max>848</Max>
<Mean>717.47541 </Mean>
<Base>61</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR25UW8E:1 374125280:I-dif</Key>
<First>97</First>
<Last>97</Last>
<Min>97</Min>
<Max>97</Max>
<Mean>97</Mean>
<Base>61</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR25UW8E:1 374125280:I-dif-Srr</Key>
<First>78</First>
<Last>78</Last>
<Min>78</Min>
<Max>78</Max>
<Mean>78</Mean>
<Base>61</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR25UW8E:1 374125280:Ipv</Key>
<First>640</First>
<Last>801</Last>
<Min>612</Min>
<Max>801</Max>
<Mean>692.13114 8</Mean>
<Base>61</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR25UW8E:1 374125280:Max Temperature</Key>
<First>66.5</First>
<Last>66.5</Last>
<Min>66.5</Min>
<Max>66.5</Max>
<Mean>66.5</Mean>
<Base>61</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR25UW8E:1 374125280:Max Vpv</Key>
<First>515</First>
<Last>515</Last>
<Min>515</Min>
<Max>515</Max>
<Mean>515</Mean>
<Base>61</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR25UW8E:1 374125280:Mode</Key>
<First>7</First>
<Last>7</Last>
<Min>7</Min>
<Max>7</Max>
<Mean>7</Mean>
<Base>61</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR25UW8E:1 374125280:Pac</Key>
<First>166</First>
<Last>204</Last>
<Min>156</Min>
<Max>204</Max>
<Mean>172.32786 9</Mean>
<Base>61</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR25UW8E:1 374125280:Power On</Key>
<First>762</First>
<Last>762</Last>
<Min>762</Min>
<Max>762</Max>
<Mean>762</Mean>
<Base>61</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR25UW8E:1 374125280:Seria l Number</Key>
<First>13741252 80</First>
<Last>137412528 0</Last>
<Min>1374125280 </Min>
<Max>1374125280 </Max>
<Mean>137412528 0</Mean>
<Base>61</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR25UW8E:1 374125280:Tempe rature</Key>
<First>42.5</First>
<Last>41.4</Last>
<Min>41.4</Min>
<Max>42.5</Max>
<Mean>41.827869 </Mean>
<Base>61</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR25UW8E:1 374125280:Vac</Key>
<First>241</First>
<Last>241</Last>
<Min>240</Min>
<Max>241</Max>
<Mean>240.75409 8</Mean>
<Base>61</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR25UW8E:1 374125280:Vac-Srr</Key>
<First>241</First>
<Last>241</Last>
<Min>240</Min>
<Max>241</Max>
<Mean>240.93442 6</Mean>
<Base>61</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR25UW8E:1 374125280:Vpv</Key>
<First>320</First>
<Last>301</Last>
<Min>287</Min>
<Max>320</Max>
<Mean>304.90163 9</Mean>
<Base>61</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR25UW8E:1 374125280:Vpv-_PE</Key>
<First>0</First>
<Last>0</Last>
<Min>0</Min>
<Max>0</Max>
<Mean>0</Mean>
<Base>61</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR25UW8E:1 374125280:Vpv-Setpoint</Key>
<First>321</First>
<Last>302</Last>
<Min>288</Min>
<Max>321</Max>
<Mean>305.52459 </Mean>
<Base>61</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>
<MeanPublic>
<Key>WR25UW8E:1 374125280:Zac</Key>
<First>0</First>
<Last>0</Last>
<Min>0</Min>
<Max>0</Max>
<Mean>0</Mean>
<Base>61</Base>
<Period>300</Period>
<TimeStamp>20 07-07-05T18:45:18</TimeStamp>
</MeanPublic>

</WebBox>

Jul 8 '07 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
1958
by: Tjerk Wolterink | last post by:
Don't thinkt it is possible, but maybe someone knows how to do this. I have an xml file like this: --- <?xml version="1.0" encoding="ISO-8859-1"?> <xc:xcontent xmlns:xc="http://www.wolterinkwebdesign.com/xml/xcontent" xmlns="http://www.w3.org/1999/xhtml" module="agenda"> <xc:subset offset="0" max="10" count="3"/> <xc:agendapunt> <xc:id>1</xc:id>
2
2823
by: Jan Roland Eriksson | last post by:
Archive-name: www/stylesheets/authoring-faq Posting-Frequency: twice a week (Mondays and Thursdays) Last-modified: August 28, 2002 Version: 1.15 URL: http://css.nu/faq/ciwas-aFAQ.html Maintainer: Jan Roland Eriksson <rex@css.nu> ciwas stylesheet authoring FAQ v1.15 ______________________________________________________________________
0
1960
by: Jan Roland Eriksson | last post by:
Archive-name: www/stylesheets/authoring-faq Posting-Frequency: twice a week (Mondays and Thursdays) Last-modified: April 10, 2003 Version: 1.16 URL: http://css.nu/faq/ciwas-aFAQ.html Maintainer: Jan Roland Eriksson <rex@css.nu> ciwas stylesheet authoring FAQ v1.16 ______________________________________________________________________
2
2688
by: Laurent Bertin | last post by:
Hi i got a strange problem but it's true i don't make thing like anyone... First Config: + IIS5.0 SP2 (yes i know...) WebSite Security Root : Digest Authentication, NT Authenticated SubFolders : Anonymous Login Anonymous login is set to use a domain user to enable a sql server authenticated connection. Permissions are based on Page/action/user Membership
2
2379
by: rked | last post by:
I get nameSPAN1 is undefined when I place cursor in comments box.. <%@ LANGUAGE="VBScript" %> <% DIM ipAddress ipAddress=Request.Servervariables("REMOTE_HOST") %> <html> <head> <meta http-equiv="Content-Type" content="text/html;
7
1349
by: Andrew | last post by:
hi All, is it possible to do this? for instance: http://www.domain.com/pdisplay.php?page=p2/ps2antigrav&type=htm to http://www.domain.com/ps2antigrav.html and
6
4901
by: scottyman | last post by:
I can't make this script work properly. I've gone as far as I can with it and the rest is out of my ability. I can do some html editing but I'm lost in the Java world. The script at the bottom of the html page controls the form fields that are required. It doesn't function like it's supposed to and I can leave all the fields blank and it still submits the form. Also I can't get it to transfer the file in the upload section. The file name...
1
3603
by: Andrew | last post by:
Hello, friends, I am implementing web app security using asp.net 1.1, and I found the following source code from Yahoo! Mail login page: <form method="post" action="https://login.yahoo.com/config/login?" autocomplete="off" name="login_form"> <input type="hidden" name=".tries" value="1"> <input type="hidden" name=".src" value="ym"> <input type="hidden" name=".md5" value="">
2
2962
by: DC | last post by:
The Code <%@ import namespace="System" %> <%@ import namespace="System.Web" %> <%@ import namespace="System.Web.UI" %> <%@ import namespace="System.Web.UI.HtmlControls" %> <%@ import namespace="System.Web.UI.WebControls" %> <%@ import namespace="System.Data" %> <%@ import namespace="System.Data.OleDb" %>
0
3584
by: DC | last post by:
The problem I'm using the .NET GridView and FormView objects for the first time and im getting the error "An OleDbParameter with ParameterName '@ID' is not contained by this OleDbParameterCollection" whenI try to write a new record. Delete and Modify work fine its just the add record function causes the error.
0
9617
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10254
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10036
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8929
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7451
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6710
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5354
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5481
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
2849
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.