473,394 Members | 1,726 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

new to xml - sitemap help

-D-
I'm taking my first stab at using xml, so please bear with my novice
questions and understanding of xml.

I'm trying to create an xml file that holds all my website navigation. If I
understand correctly, I can use xslt to create different menus from the xml
file.

What I'm trying to accomplish is to create a top menu bar, left navigation
menu bar and sub header navigation bar. Then place the transformed xslt
menus into user controls that I can drop into my pages.

Here is how I structured my xml file:
<?xml version="1.0" encoding="utf-8" ?>
<sitemap>
<category title="Home">
<page url="index.aspx" title="Home" />
</category>
<category title="About Us">
<page url="/about_us/index.aspx" title="About Us" />
<page url="/about_us/mediaroom.aspx" title="Media Room" />
<page url="/about_us/awards.aspx" title="Awards" />
<page url="/about_us/employment.aspx" title="Employment Opportunities" />
<page url="/about_us/events.aspx" title="Trade Show Calendar" />
<page url="/about_us/partners.aspx" title="Partners and Alliances" />
<page url="/about_us/wrcmedia.aspx" title="WRC Media" />
</category>
<category title="Contact Us">
<page url="contact.aspx" title="Contact Us" />
</category>
<category title="Customer Support">
<page url="http://support.compasslearning.com" title="Customer Support" />
</category>
<category title="Site Map">
<page url="sitemap.aspx" title="Site Map" />
</category>
<category title="Technology">
<page url="/technology/index.aspx" title="Technology" />
<page url="/technology/subscription.aspx" title="Odyssey Subscription" />
<page url="/technology/hosted.aspx" title="Odyssey Hosted" />
<page url="/technology/enterprise.aspx" title="Odyssey Enterprise" />
</category>
<category title="Research">
<page url="/research/index.aspx" title="Research" />
</category>
<category title="Assessment">
<page url="/assessment/index.aspx" title="Assessment" />
<page url="/assessment/custom.aspx" title="Custom Assessment" />
<page url="/assessment/explorer.aspx" title="CompassLearning Explorer" />
</category>
<category title="Curriculum">
<page url="/curriculum/index.aspx" title="Curriculum" />
<page url="/research/index.aspx" title="Scientifically-Based Research" />
<page url="/curriculum/prek.aspx" title="Pre-K" />
<page url="/curriculum/reading.aspx" title="Reading/Language Arts" />
<page url="/curriculum/writing.aspx" title="Writing" />
<page url="/curriculum/math.aspx" title="Mathematics" />
<page url="/curriculum/spanmath.aspx" title="Matemáticas" />
<page url="/curriculum/science.aspx" title="Science" />
<page url="/curriculum/socialstudies.aspx" title="Social Studies" />
<page url="/curriculum/crosscurricular.aspx" title="Cross Curricular" />
<page url="/curriculum/ell.aspx" title="English Language Learners" />
<page url="/curriculum/specialneeds.aspx" title="Children with Spcial
Needs" />
<page url="/curriculum/secondary.aspx" title="Secondary" />
</category>
<category title="Data Management">
<page url="/data_management/index.aspx" title="Data Management" />
<page url="/data_management/students.aspx" title="Managing Students" />
<page url="/data_management/standards.aspx" title="Managing Standards" />
<page url="/data_management/reporting.aspx" title="Managing Reporting" />
</category>
<category title="Services">
<page url="/services/index.aspx" title="Services" />
<page url="/services/custservice.aspx" title="Customer Service" />
<page url="/services/implementservice.aspx" title="Implementation
Services" />
<page url="/services/supportplan.aspx" title="Annual Support Plans" />
<page url="/services/options.aspx" title="More Options" />
<page url="/services/prodev.aspx" title="Professional Development" />
</category>
<category title="Results">
<page url="/results/index.aspx" title="Results" />
<page url="/results/research.aspx" title="Product Research" />
<page url="/results/achievement.aspx" title="Achievement Results" />
</category>
</sitemap>

for my top navigation menu, I'm trying to create an unordered list menu:

<?xml version="1.0" encoding="UTF-8" ?>
<stylesheet version="1.0" xmlns="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<ul>
<xsl:for-each select="category/page">
<li><a href="<xsl:value-of select="url"/>"><xsl:value-of
select="title"/></a></li>
</xsl:for-each>
</ul>
</xsl:template>
</stylesheet>

I'm probably way off on this and need some help. I might have structured my
xml file incorrectly as well.

Using the xml file, I want to create the top navigation menu that displays
only:

<page url="index.aspx" title="Home" />
<page url="/about_us/index.aspx" title="About Us" />
<page url="contact.aspx" title="Contact Us" />
<page url="sitemap.aspx" title="Site Map" />

Can anyone take a look at my code (probably a mess) and help me out.

Thank you.
Jun 30 '06 #1
2 2010
-D-
I re-tooled my xml file into the following structure to better describe my
menu system:

<?xml version="1.0" encoding="utf-8" ?>
<sitemap>
<menu location="top">
<page url="index.aspx" title="Home" />
</menu>
<menu location="top">
<page url="/about_us/index.aspx" title="About Us" />
</menu>
<menu location="top">
<page url="contact.aspx" title="Contact Us" />
</menu>
<menu location="top">
<page url="http://support.compasslearning.com" title="Contact Us" />
</menu>
<menu location="top">
<page url="sitemap.aspx" title="Site Map" />
</menu>
<menu location="main">
<page url="/technology/index.aspx" title="Technology" />
</menu>
<menu location="main">
<page url="/research/index.aspx" title="Research" />
</menu>
<menu location="main">
<page url="/assessment/index.aspx" title="Assessment" />
</menu>
<menu location="main">
<page url="/curriculum/index.aspx" title="Curriculum" />
</menu>
<menu location="main">
<page url="/data_management/index.aspx" title="Data Management" />
</menu>
<menu location="main">
<page url="/services/index.aspx" title="Services" />
</menu>
<menu location="main">
<page url="/results/index.aspx" title="Results" />
</menu>
<menu location="left">
<page url="/about_us/index.aspx" title="About Us" />
<page url="/about_us/mediaroom.aspx" title="Media Room" />
<page url="/about_us/awards.aspx" title="Awards" />
<page url="/about_us/employment.aspx" title="Employment Opportunities" />
<page url="/about_us/events.aspx" title="Trade Show Calendar" />
<page url="/about_us/partners.aspx" title="Partners and Alliances" />
<page url="/about_us/wrcmedia.aspx" title="WRC Media" />
</menu>
<menu location="left">
<page url="/technology/index.aspx" title="Technology" />
<page url="/technology/subscription.aspx" title="Odyssey Subscription" />
<page url="/technology/hosted.aspx" title="Odyssey Hosted" />
<page url="/technology/enterprise.aspx" title="Odyssey Enterprise" />
</menu>
<menu location="left">
<page url="/assessment/index.aspx" title="Assessment" />
<page url="/assessment/custom.aspx" title="Custom Assessment" />
<page url="/assessment/explorer.aspx" title="CompassLearning Explorer" />
</menu>
<menu location="left">
<page url="/curriculum/index.aspx" title="Curriculum" />
<page url="/research/index.aspx" title="Scientifically-Based Research" />
<page url="/curriculum/prek.aspx" title="Pre-K" />
<page url="/curriculum/reading.aspx" title="Reading/Language Arts" />
<page url="/curriculum/writing.aspx" title="Writing" />
<page url="/curriculum/math.aspx" title="Mathematics" />
<page url="/curriculum/spanmath.aspx" title="Matemáticas" />
<page url="/curriculum/science.aspx" title="Science" />
<page url="/curriculum/socialstudies.aspx" title="Social Studies" />
<page url="/curriculum/crosscurricular.aspx" title="Cross Curricular" />
<page url="/curriculum/ell.aspx" title="English Language Learners" />
<page url="/curriculum/specialneeds.aspx" title="Children with Spcial
Needs" />
<page url="/curriculum/secondary.aspx" title="Secondary" />
</menu>
<menu locatin="left">
<page url="/data_management/index.aspx" title="Data Management" />
<page url="/data_management/students.aspx" title="Managing Students" />
<page url="/data_management/standards.aspx" title="Managing Standards" />
<page url="/data_management/reporting.aspx" title="Managing Reporting" />
</menu>
<menu location="left">
<page url="/services/index.aspx" title="Services" />
<page url="/services/custservice.aspx" title="Customer Service" />
<page url="/services/implementservice.aspx" title="Implementation
Services" />
<page url="/services/supportplan.aspx" title="Annual Support Plans" />
<page url="/services/options.aspx" title="More Options" />
<page url="/services/prodev.aspx" title="Professional Development" />
</menu>
<menu location="left">
<page url="/results/index.aspx" title="Results" />
<page url="/results/research.aspx" title="Product Research" />
<page url="/results/achievement.aspx" title="Achievement Results" />
</menu>
</sitemap>

Any input is appreciated.

Thank you.

"-D-" <so*****@NOSPAM.com> wrote in message
news:OA**************@TK2MSFTNGP05.phx.gbl...
I'm taking my first stab at using xml, so please bear with my novice
questions and understanding of xml.

I'm trying to create an xml file that holds all my website navigation. If I understand correctly, I can use xslt to create different menus from the xml file.

What I'm trying to accomplish is to create a top menu bar, left navigation
menu bar and sub header navigation bar. Then place the transformed xslt
menus into user controls that I can drop into my pages.

Here is how I structured my xml file:
<?xml version="1.0" encoding="utf-8" ?>
<sitemap>
<category title="Home">
<page url="index.aspx" title="Home" />
</category>
<category title="About Us">
<page url="/about_us/index.aspx" title="About Us" />
<page url="/about_us/mediaroom.aspx" title="Media Room" />
<page url="/about_us/awards.aspx" title="Awards" />
<page url="/about_us/employment.aspx" title="Employment Opportunities" /> <page url="/about_us/events.aspx" title="Trade Show Calendar" />
<page url="/about_us/partners.aspx" title="Partners and Alliances" />
<page url="/about_us/wrcmedia.aspx" title="WRC Media" />
</category>
<category title="Contact Us">
<page url="contact.aspx" title="Contact Us" />
</category>
<category title="Customer Support">
<page url="http://support.compasslearning.com" title="Customer Support" /> </category>
<category title="Site Map">
<page url="sitemap.aspx" title="Site Map" />
</category>
<category title="Technology">
<page url="/technology/index.aspx" title="Technology" />
<page url="/technology/subscription.aspx" title="Odyssey Subscription" /> <page url="/technology/hosted.aspx" title="Odyssey Hosted" />
<page url="/technology/enterprise.aspx" title="Odyssey Enterprise" />
</category>
<category title="Research">
<page url="/research/index.aspx" title="Research" />
</category>
<category title="Assessment">
<page url="/assessment/index.aspx" title="Assessment" />
<page url="/assessment/custom.aspx" title="Custom Assessment" />
<page url="/assessment/explorer.aspx" title="CompassLearning Explorer" /> </category>
<category title="Curriculum">
<page url="/curriculum/index.aspx" title="Curriculum" />
<page url="/research/index.aspx" title="Scientifically-Based Research" /> <page url="/curriculum/prek.aspx" title="Pre-K" />
<page url="/curriculum/reading.aspx" title="Reading/Language Arts" />
<page url="/curriculum/writing.aspx" title="Writing" />
<page url="/curriculum/math.aspx" title="Mathematics" />
<page url="/curriculum/spanmath.aspx" title="Matemáticas" />
<page url="/curriculum/science.aspx" title="Science" />
<page url="/curriculum/socialstudies.aspx" title="Social Studies" />
<page url="/curriculum/crosscurricular.aspx" title="Cross Curricular" />
<page url="/curriculum/ell.aspx" title="English Language Learners" />
<page url="/curriculum/specialneeds.aspx" title="Children with Spcial
Needs" />
<page url="/curriculum/secondary.aspx" title="Secondary" />
</category>
<category title="Data Management">
<page url="/data_management/index.aspx" title="Data Management" />
<page url="/data_management/students.aspx" title="Managing Students" />
<page url="/data_management/standards.aspx" title="Managing Standards" /> <page url="/data_management/reporting.aspx" title="Managing Reporting" /> </category>
<category title="Services">
<page url="/services/index.aspx" title="Services" />
<page url="/services/custservice.aspx" title="Customer Service" />
<page url="/services/implementservice.aspx" title="Implementation
Services" />
<page url="/services/supportplan.aspx" title="Annual Support Plans" />
<page url="/services/options.aspx" title="More Options" />
<page url="/services/prodev.aspx" title="Professional Development" />
</category>
<category title="Results">
<page url="/results/index.aspx" title="Results" />
<page url="/results/research.aspx" title="Product Research" />
<page url="/results/achievement.aspx" title="Achievement Results" />
</category>
</sitemap>

for my top navigation menu, I'm trying to create an unordered list menu:

<?xml version="1.0" encoding="UTF-8" ?>
<stylesheet version="1.0" xmlns="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<ul>
<xsl:for-each select="category/page">
<li><a href="<xsl:value-of select="url"/>"><xsl:value-of
select="title"/></a></li>
</xsl:for-each>
</ul>
</xsl:template>
</stylesheet>

I'm probably way off on this and need some help. I might have structured my xml file incorrectly as well.

Using the xml file, I want to create the top navigation menu that displays
only:

<page url="index.aspx" title="Home" />
<page url="/about_us/index.aspx" title="About Us" />
<page url="contact.aspx" title="Contact Us" />
<page url="sitemap.aspx" title="Site Map" />

Can anyone take a look at my code (probably a mess) and help me out.

Thank you.

Jun 30 '06 #2
One option is that if you are using ASP.NET 2.0, you get some key site
navigation infrastructure for free.

Check out

http://msdn2.microsoft.com/en-us/lib...b.sitemap.aspx
http://msdn2.microsoft.com/en-us/lib...atasource.aspx

and related classes.
"-D-" <so*****@NOSPAM.comwrote in message
news:e4*************@TK2MSFTNGP05.phx.gbl...
>I re-tooled my xml file into the following structure to better describe my
menu system:

<?xml version="1.0" encoding="utf-8" ?>
<sitemap>
<menu location="top">
<page url="index.aspx" title="Home" />
</menu>
<menu location="top">
<page url="/about_us/index.aspx" title="About Us" />
</menu>
<menu location="top">
<page url="contact.aspx" title="Contact Us" />
</menu>
<menu location="top">
<page url="http://support.compasslearning.com" title="Contact Us" />
</menu>
<menu location="top">
<page url="sitemap.aspx" title="Site Map" />
</menu>
<menu location="main">
<page url="/technology/index.aspx" title="Technology" />
</menu>
<menu location="main">
<page url="/research/index.aspx" title="Research" />
</menu>
<menu location="main">
<page url="/assessment/index.aspx" title="Assessment" />
</menu>
<menu location="main">
<page url="/curriculum/index.aspx" title="Curriculum" />
</menu>
<menu location="main">
<page url="/data_management/index.aspx" title="Data Management" />
</menu>
<menu location="main">
<page url="/services/index.aspx" title="Services" />
</menu>
<menu location="main">
<page url="/results/index.aspx" title="Results" />
</menu>
<menu location="left">
<page url="/about_us/index.aspx" title="About Us" />
<page url="/about_us/mediaroom.aspx" title="Media Room" />
<page url="/about_us/awards.aspx" title="Awards" />
<page url="/about_us/employment.aspx" title="Employment Opportunities" />
<page url="/about_us/events.aspx" title="Trade Show Calendar" />
<page url="/about_us/partners.aspx" title="Partners and Alliances" />
<page url="/about_us/wrcmedia.aspx" title="WRC Media" />
</menu>
<menu location="left">
<page url="/technology/index.aspx" title="Technology" />
<page url="/technology/subscription.aspx" title="Odyssey Subscription" />
<page url="/technology/hosted.aspx" title="Odyssey Hosted" />
<page url="/technology/enterprise.aspx" title="Odyssey Enterprise" />
</menu>
<menu location="left">
<page url="/assessment/index.aspx" title="Assessment" />
<page url="/assessment/custom.aspx" title="Custom Assessment" />
<page url="/assessment/explorer.aspx" title="CompassLearning Explorer" />
</menu>
<menu location="left">
<page url="/curriculum/index.aspx" title="Curriculum" />
<page url="/research/index.aspx" title="Scientifically-Based Research" />
<page url="/curriculum/prek.aspx" title="Pre-K" />
<page url="/curriculum/reading.aspx" title="Reading/Language Arts" />
<page url="/curriculum/writing.aspx" title="Writing" />
<page url="/curriculum/math.aspx" title="Mathematics" />
<page url="/curriculum/spanmath.aspx" title="Matemáticas" />
<page url="/curriculum/science.aspx" title="Science" />
<page url="/curriculum/socialstudies.aspx" title="Social Studies" />
<page url="/curriculum/crosscurricular.aspx" title="Cross Curricular" />
<page url="/curriculum/ell.aspx" title="English Language Learners" />
<page url="/curriculum/specialneeds.aspx" title="Children with Spcial
Needs" />
<page url="/curriculum/secondary.aspx" title="Secondary" />
</menu>
<menu locatin="left">
<page url="/data_management/index.aspx" title="Data Management" />
<page url="/data_management/students.aspx" title="Managing Students" />
<page url="/data_management/standards.aspx" title="Managing Standards" />
<page url="/data_management/reporting.aspx" title="Managing Reporting" />
</menu>
<menu location="left">
<page url="/services/index.aspx" title="Services" />
<page url="/services/custservice.aspx" title="Customer Service" />
<page url="/services/implementservice.aspx" title="Implementation
Services" />
<page url="/services/supportplan.aspx" title="Annual Support Plans" />
<page url="/services/options.aspx" title="More Options" />
<page url="/services/prodev.aspx" title="Professional Development" />
</menu>
<menu location="left">
<page url="/results/index.aspx" title="Results" />
<page url="/results/research.aspx" title="Product Research" />
<page url="/results/achievement.aspx" title="Achievement Results" />
</menu>
</sitemap>

Any input is appreciated.

Thank you.

"-D-" <so*****@NOSPAM.comwrote in message
news:OA**************@TK2MSFTNGP05.phx.gbl...
>I'm taking my first stab at using xml, so please bear with my novice
questions and understanding of xml.

I'm trying to create an xml file that holds all my website navigation.
If
I
>understand correctly, I can use xslt to create different menus from the
xml
>file.

What I'm trying to accomplish is to create a top menu bar, left
navigation
menu bar and sub header navigation bar. Then place the transformed xslt
menus into user controls that I can drop into my pages.

Here is how I structured my xml file:
<?xml version="1.0" encoding="utf-8" ?>
<sitemap>
<category title="Home">
<page url="index.aspx" title="Home" />
</category>
<category title="About Us">
<page url="/about_us/index.aspx" title="About Us" />
<page url="/about_us/mediaroom.aspx" title="Media Room" />
<page url="/about_us/awards.aspx" title="Awards" />
<page url="/about_us/employment.aspx" title="Employment Opportunities"
/>
> <page url="/about_us/events.aspx" title="Trade Show Calendar" />
<page url="/about_us/partners.aspx" title="Partners and Alliances" />
<page url="/about_us/wrcmedia.aspx" title="WRC Media" />
</category>
<category title="Contact Us">
<page url="contact.aspx" title="Contact Us" />
</category>
<category title="Customer Support">
<page url="http://support.compasslearning.com" title="Customer Support"
/>
> </category>
<category title="Site Map">
<page url="sitemap.aspx" title="Site Map" />
</category>
<category title="Technology">
<page url="/technology/index.aspx" title="Technology" />
<page url="/technology/subscription.aspx" title="Odyssey Subscription"
/>
> <page url="/technology/hosted.aspx" title="Odyssey Hosted" />
<page url="/technology/enterprise.aspx" title="Odyssey Enterprise" />
</category>
<category title="Research">
<page url="/research/index.aspx" title="Research" />
</category>
<category title="Assessment">
<page url="/assessment/index.aspx" title="Assessment" />
<page url="/assessment/custom.aspx" title="Custom Assessment" />
<page url="/assessment/explorer.aspx" title="CompassLearning Explorer"
/>
> </category>
<category title="Curriculum">
<page url="/curriculum/index.aspx" title="Curriculum" />
<page url="/research/index.aspx" title="Scientifically-Based Research"
/>
> <page url="/curriculum/prek.aspx" title="Pre-K" />
<page url="/curriculum/reading.aspx" title="Reading/Language Arts" />
<page url="/curriculum/writing.aspx" title="Writing" />
<page url="/curriculum/math.aspx" title="Mathematics" />
<page url="/curriculum/spanmath.aspx" title="Matemáticas" />
<page url="/curriculum/science.aspx" title="Science" />
<page url="/curriculum/socialstudies.aspx" title="Social Studies" />
<page url="/curriculum/crosscurricular.aspx" title="Cross Curricular"
/>
<page url="/curriculum/ell.aspx" title="English Language Learners" />
<page url="/curriculum/specialneeds.aspx" title="Children with Spcial
Needs" />
<page url="/curriculum/secondary.aspx" title="Secondary" />
</category>
<category title="Data Management">
<page url="/data_management/index.aspx" title="Data Management" />
<page url="/data_management/students.aspx" title="Managing Students" />
<page url="/data_management/standards.aspx" title="Managing Standards"
/>
> <page url="/data_management/reporting.aspx" title="Managing Reporting"
/>
> </category>
<category title="Services">
<page url="/services/index.aspx" title="Services" />
<page url="/services/custservice.aspx" title="Customer Service" />
<page url="/services/implementservice.aspx" title="Implementation
Services" />
<page url="/services/supportplan.aspx" title="Annual Support Plans" />
<page url="/services/options.aspx" title="More Options" />
<page url="/services/prodev.aspx" title="Professional Development" />
</category>
<category title="Results">
<page url="/results/index.aspx" title="Results" />
<page url="/results/research.aspx" title="Product Research" />
<page url="/results/achievement.aspx" title="Achievement Results" />
</category>
</sitemap>

for my top navigation menu, I'm trying to create an unordered list menu:

<?xml version="1.0" encoding="UTF-8" ?>
<stylesheet version="1.0" xmlns="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<ul>
<xsl:for-each select="category/page">
<li><a href="<xsl:value-of select="url"/>"><xsl:value-of
select="title"/></a></li>
</xsl:for-each>
</ul>
</xsl:template>
</stylesheet>

I'm probably way off on this and need some help. I might have structured
my
>xml file incorrectly as well.

Using the xml file, I want to create the top navigation menu that
displays
only:

<page url="index.aspx" title="Home" />
<page url="/about_us/index.aspx" title="About Us" />
<page url="contact.aspx" title="Contact Us" />
<page url="sitemap.aspx" title="Site Map" />

Can anyone take a look at my code (probably a mess) and help me out.

Thank you.



Jul 7 '06 #3

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

Similar topics

1
by: chris.rust | last post by:
Has anyone else had any trouble setting up a sitemap view to be filtered by roles? We've put a cust role provider in place, and we can verify that it's only being called once for each...
2
by: Andy Sutorius via DotNetMonster.com | last post by:
I have a current website divided into 2 sections. Each section needs it's own sitemap and treeview. Is it possible to have 2 different sitemaps in a website? Everything that I have read says you...
4
by: shapper | last post by:
Hello, I have 2 questions about Asp.Net 2.0 web.sitemap: 1. Where can I find the list of all siteMapNode attributes? I looked eveywhere and couldn't find it. 2. I created a Web.sitemap...
4
by: shapper | last post by:
Hello, I am trying to convert an Asp.Net 2.0 XML sitemap file to a Google's sitemap file. I am posting the formats of both files. 1. How can I do the conversion? 2. And can I use an...
1
by: Velvet | last post by:
I keep getting this error: Could not find the sitemap node with URL '~/Web.sitemap'. I have a master page that has a menu control and a SiteMapDataSource on it. <asp:Menu ID="Menu1"...
1
by: shapper | last post by:
Hello, I am trying to convert an Asp.Net XML sitemap file in a Google XMl sitemap file using a XSL file using an HttpHandler. Everything seems well in my code but I am getting an error: XML...
1
by: Tarun Mistry | last post by:
Hi guys, I want to create a sitemap (lets call it a map to avoid confusion with .NET sitemaps) for my website, as in, a single page that lists all of the other pages on my web site. e.g....
5
by: Tim Mackey | last post by:
hi, i have put my web.sitemap in /App_Data so i can edit it programatically via a web admin page, inheriting the modify permissions from the App_Data folder etc. i was hoping the provider would...
1
by: Robert Dufour | last post by:
In Vs2005 VB.net. How do you localize the title and the description of the pages in the web.sitemap file? For instance in the simple sitemap below <?xml version="1.0" encoding="utf-8" ?> ...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
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...

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.