473,722 Members | 2,161 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Treeview and XML

I am trying to implement a Treeview w/an XML file and I even copied and
pasted examples from MSDN but can't get them to work. Any suggestions
welcome.

XML File

<TREENODES>
<TREENODE TEXT="Document-1">
<TREENODE TEXT="Folder-1" EXPANDED="true" >
<TREENODE TEXT="Document-2" />
<TREENODE TEXT="Document-3" />
</TREENODE>
<TREENODE TEXT="Document-4">
</TREENODES>
Control Source

<iewc:TreeVie w id="TreeView1" style="Z-INDEX: 102; LEFT: 168px;
POSITION: absolute; TOP: 120px" runat="server"
TREENODESRC="Na vigateTree.xml" ></iewc:TreeView>

Error

Server Error in '/Manager' Application.
------------------------------------------------------------------------
--------

The data at the root level is invalid. Line 1, position 1.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.Xml.XmlE xception: The data at the root level
is invalid. Line 1, position 1.


Evan Kontos | EK*****@comtekc add.com

27 Whitehall St. | 3rd Floor | New York, NY 10004
Tel 212.480.8166 | Fax 212.480.8167 | Personal Fax 786.513.0295
www.comtekcadd.com

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 20 '05 #1
14 6829
Cor
Evan,
Will you help me, I want to use a Treeview on a webpage. I saw it with aspx
and scripting but not with VB.net, can you tell me where I can find this.
Cor
Nov 20 '05 #2
Hi Evan,

You may try to modified the XML file as follows.
<TREENODES>
<TREENODE TEXT="Document-1"/>
<TREENODE TEXT="Folder-1" EXPANDED="true" >
<TREENODE TEXT="Document-2" />
<TREENODE TEXT="Document-3" />
</TREENODE>
<TREENODE TEXT="Document-4"/>
</TREENODES>
[Note: the node in xml file should end with /
e.g.
<TREENODE TEXT="Document-1"/>
and
<TREENODE TEXT="Folder-1" EXPANDED="true" >
</TREENODE>
is correct syntax.
In addition the <TREENODE TEXT="Document-1"/> is the brief form of
<TREENODE TEXT="Document-1"></TREENODE>.

If you have further related question please feel free to contact me.

Regards,
Peter Huang
Microsoft Online Partner Support
Get Secure! www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.

--------------------
From: Evan Kontos <ek*****@comtek cadd.com>
X-Newsreader: AspNNTP 1.50 (ActionJackson. com)
Subject: Treeview and XML
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Message-ID: <eH************ **@TK2MSFTNGP11 .phx.gbl>
Newsgroups: microsoft.publi c.dotnet.langua ges.vb
Date: Tue, 02 Sep 2003 08:39:09 -0700
NNTP-Posting-Host: actionjackson13 3.dsl.frii.net 216.17.147.133
Lines: 1
Path: cpmsftngxa06.ph x.gbl!TK2MSFTNG P08.phx.gbl!TK2 MSFTNGP11.phx.g bl
Xref: cpmsftngxa06.ph x.gbl microsoft.publi c.dotnet.langua ges.vb:133554
X-Tomcat-NG: microsoft.publi c.dotnet.langua ges.vb

I am trying to implement a Treeview w/an XML file and I even copied and
pasted examples from MSDN but can't get them to work. Any suggestions
welcome.

XML File

<TREENODES>
<TREENODE TEXT="Document-1">
<TREENODE TEXT="Folder-1" EXPANDED="true" >
<TREENODE TEXT="Document-2" />
<TREENODE TEXT="Document-3" />
</TREENODE>
<TREENODE TEXT="Document-4">
</TREENODES>
Control Source

<iewc:TreeVi ew id="TreeView1" style="Z-INDEX: 102; LEFT: 168px;
POSITION: absolute; TOP: 120px" runat="server"
TREENODESRC="N avigateTree.xml "></iewc:TreeView>

Error

Server Error in '/Manager' Application.
------------------------------------------------------------------------
--------

The data at the root level is invalid. Line 1, position 1.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.Xml.XmlE xception: The data at the root level
is invalid. Line 1, position 1.


Evan Kontos | EK*****@comtekc add.com

27 Whitehall St. | 3rd Floor | New York, NY 10004
Tel 212.480.8166 | Fax 212.480.8167 | Personal Fax 786.513.0295
www.comtekcadd.com

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!



Nov 20 '05 #3
Peter,
Tried the change that you recommended but I still get the same error
message. This is also at the top of the XML file

<?xml version='1.0'?>

and the rest of the file:

<TREENODES>
<TREENODE TEXT="Document-1"/>
<TREENODE TEXT="Folder-1" EXPANDED="true" >
<TREENODE TEXT="Document-2" />
<TREENODE TEXT="Document-3" />
</TREENODE>
<TREENODE TEXT="Document-4"/>
</TREENODES>
any more suggestions?

Evan Kontos | EK*****@comtekc add.com

27 Whitehall St. | 3rd Floor | New York, NY 10004
Tel 212.480.8166 | Fax 212.480.8167 | Personal Fax 786.513.0295
www.comtekcadd.com

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 20 '05 #4
Hi Evan,

I can not reproduce the problem. Here is my test code. I tested on
VS.NET2003.
I hope you can create a new project and perform the test and let me know
the result.
1.Create a new Webapplication
2.Drag the TreeView control to the webform
3.Modified the NavigateTree.xm l and yourapp.aspx as follows.
[NavigateTree.xm l, please place it in the same directory as the one of
yourapp.aspx]
<?xml version='1.0'?>
<TREENODES>
<TREENODE TEXT="Document-1"/>
<TREENODE TEXT="Folder-1" EXPANDED="true" >
<TREENODE TEXT="Document-2" />
<TREENODE TEXT="Document-3" />
</TREENODE>
<TREENODE TEXT="Document-4"/>
</TREENODES>

[yourapp.aspx]
<%@ Register TagPrefix="iewc " Namespace="Micr osoft.Web.UI.We bControls"
Assembly="Micro soft.Web.UI.Web Controls" %>
<%@ Page language="c#" Codebehind="Web Form1.aspx.cs"
AutoEventWireup ="false" Inherits="WebAp plication3.WebF orm1" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
<HEAD>
<title>WebForm1 </title>
<meta content="Micros oft Visual Studio .NET 7.1" name="GENERATOR ">
<meta content="C#" name="CODE_LANG UAGE">
<meta content="JavaSc ript" name="vs_defaul tClientScript">
<meta content="http://schemas.microso ft.com/intellisense/ie5"
name="vs_target Schema">
</HEAD>
<body MS_POSITIONING= "GridLayout ">
<form id="Form1" method="post" runat="server">
<iewc:treevie w id="TreeView1" style="Z-INDEX: 101; LEFT: 8px; POSITION:
absolute; TOP: 8px" runat="server"
TREENODESRC="Na vigateTree.xml" ></iewc:treeview></FONT></form>
</body>
</HTML>

Please perform the test and let me know the result. This will help me
narrow down and isolate the problem.
Regards,
Peter Huang
Microsoft Online Partner Support
Get Secure! www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.

--------------------
From: Evan Kontos <ek*****@comtek cadd.com>
References: <lc************ **@cpmsftngxa06 .phx.gbl>
X-Newsreader: AspNNTP 1.50 (ActionJackson. com)
Subject: RE: Treeview and XML
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Message-ID: <ex************ **@TK2MSFTNGP10 .phx.gbl>
Newsgroups: microsoft.publi c.dotnet.langua ges.vb
Date: Wed, 03 Sep 2003 05:54:36 -0700
NNTP-Posting-Host: actionjackson13 3.dsl.frii.net 216.17.147.133
Lines: 1
Path: cpmsftngxa06.ph x.gbl!TK2MSFTNG P08.phx.gbl!TK2 MSFTNGP10.phx.g bl
Xref: cpmsftngxa06.ph x.gbl microsoft.publi c.dotnet.langua ges.vb:133770
X-Tomcat-NG: microsoft.publi c.dotnet.langua ges.vb

Peter,
Tried the change that you recommended but I still get the same error
message. This is also at the top of the XML file

<?xml version='1.0'?>

and the rest of the file:

<TREENODES>
<TREENODE TEXT="Document-1"/>
<TREENODE TEXT="Folder-1" EXPANDED="true" >
<TREENODE TEXT="Document-2" />
<TREENODE TEXT="Document-3" />
</TREENODE>
<TREENODE TEXT="Document-4"/>
</TREENODES>
any more suggestions?

Evan Kontos | EK*****@comtekc add.com

27 Whitehall St. | 3rd Floor | New York, NY 10004
Tel 212.480.8166 | Fax 212.480.8167 | Personal Fax 786.513.0295
www.comtekcadd.com

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!


Nov 20 '05 #5
Peter,
Here is the error that I get. It seems the same. I click on the data
tab at the bottom of the XML page and I see a grid w/the values and it
looks OK. ANy ideas?

The data at the root level is invalid. Line 1, position 1.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.Xml.XmlE xception: The data at the root level
is invalid. Line 1, position 1.

Source Error:

An unhandled exception was generated during the execution of the current
web request. Information regarding the origin and location of the
exception can be identified using the exception stack trace below.

Stack Trace:
[XmlException: The data at the root level is invalid. Line 1, position
1.]
System.Xml.XmlT extReader.Parse Root() +295
System.Xml.XmlT extReader.Read( ) +127
Microsoft.Web.U I.WebControls.T reeView.ReadXml Src(String TreeNodeSrc,
String TreeNodeXsltSrc , String strOuter) +136
Microsoft.Web.U I.WebControls.T reeView.ReadTre eNodeXmlSrc() +80
Microsoft.Web.U I.WebControls.T reeView.OnInit( EventArgs e) +90
System.Web.UI.C ontrol.InitRecu rsive(Control namingContainer ) +241
System.Web.UI.C ontrol.InitRecu rsive(Control namingContainer ) +179
System.Web.UI.C ontrol.InitRecu rsive(Control namingContainer ) +179
System.Web.UI.P age.ProcessRequ estMain() +174


Evan Kontos | EK*****@comtekc add.com

27 Whitehall St. | 3rd Floor | New York, NY 10004
Tel 212.480.8166 | Fax 212.480.8167 | Personal Fax 786.513.0295
www.comtekcadd.com

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 20 '05 #6
Hi Evan,

You may try to set the TreeNodeSrc as following to see if this works for
you. [You may delete TREENODESRC="Na vigateTree.xml" in the aspx page]
private void Page_Load(objec t sender, System.EventArg s e)
{
TreeView1.TreeN odeSrc="<?xml version=\"1.0\" ?><TREENODES><T REENODE
TEXT=\"Document-1\"/><TREENODE TEXT=\"Folder-1\"
EXPANDED=\"true \"><TREENODE TEXT=\"Document-2\" /><TREENODE
TEXT=\"Document-3\" /></TREENODE><TREEN ODE
TEXT=\"Document-4\"/></TREENODES>";
TreeView1.DataB ind();
}

If this works for you, you may need to see if the user you used to access
the aspx page have the right to access the NavigateTree.xm l file. [If you
enable the anonymous access in the Directory Security/Anonymous access and
authentication control, then the user maybe IUSER_COMPUTERN AME.]
You may try to disable the anonymous access and enable the Integrated
Windows authentication.[Note, this will enable the browse to use the login
user account to access the aspx page and the NavigateTree.xm l , make sure
the user have the according rights]

Regards,
Peter Huang
Microsoft Online Partner Support
Get Secure! www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.
--------------------
From: Evan Kontos <ek*****@comtek cadd.com>
References: <eu************ *@cpmsftngxa06. phx.gbl>
X-Newsreader: AspNNTP 1.50 (ActionJackson. com)
Subject: RE: Treeview and XML
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Message-ID: <ez************ **@TK2MSFTNGP12 .phx.gbl>
Newsgroups: microsoft.publi c.dotnet.langua ges.vb
Date: Thu, 04 Sep 2003 09:47:44 -0700
NNTP-Posting-Host: actionjackson13 3.dsl.frii.net 216.17.147.133
Lines: 1
Path: cpmsftngxa06.ph x.gbl!TK2MSFTNG P08.phx.gbl!TK2 MSFTNGP12.phx.g bl
Xref: cpmsftngxa06.ph x.gbl microsoft.publi c.dotnet.langua ges.vb:134270
X-Tomcat-NG: microsoft.publi c.dotnet.langua ges.vb

Peter,
Here is the error that I get. It seems the same. I click on the data
tab at the bottom of the XML page and I see a grid w/the values and it
looks OK. ANy ideas?

The data at the root level is invalid. Line 1, position 1.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.Xml.XmlE xception: The data at the root level
is invalid. Line 1, position 1.

Source Error:

An unhandled exception was generated during the execution of the current
web request. Information regarding the origin and location of the
exception can be identified using the exception stack trace below.

Stack Trace:
[XmlException: The data at the root level is invalid. Line 1, position
1.]
System.Xml.XmlT extReader.Parse Root() +295
System.Xml.XmlT extReader.Read( ) +127
Microsoft.Web.U I.WebControls.T reeView.ReadXml Src(String TreeNodeSrc,
String TreeNodeXsltSrc , String strOuter) +136
Microsoft.Web.U I.WebControls.T reeView.ReadTre eNodeXmlSrc() +80
Microsoft.Web.U I.WebControls.T reeView.OnInit( EventArgs e) +90
System.Web.UI.C ontrol.InitRecu rsive(Control namingContainer ) +241
System.Web.UI.C ontrol.InitRecu rsive(Control namingContainer ) +179
System.Web.UI.C ontrol.InitRecu rsive(Control namingContainer ) +179
System.Web.UI.P age.ProcessRequ estMain() +174


Evan Kontos | EK*****@comtekc add.com

27 Whitehall St. | 3rd Floor | New York, NY 10004
Tel 212.480.8166 | Fax 212.480.8167 | Personal Fax 786.513.0295
www.comtekcadd.com

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!


Nov 20 '05 #7
Peter,
What is it that you have sent me? I use VB and I have no idea what it
is you sent or where I should place it. Please advise in more detail if
you can. Thanks.
Evan Kontos | EK*****@comtekc add.com

27 Whitehall St. | 3rd Floor | New York, NY 10004
Tel 212.480.8166 | Fax 212.480.8167 | Personal Fax 786.513.0295
www.comtekcadd.com

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 20 '05 #8
Hi Evan,

I am sorry that I have not provided the VB.NET code for you in my last post.
I think the problem is caused by that the user account that used to access
the asp page do not have the permission to access the NavigateTree.xm l file.
To workaround the problem, you have two methods.

1. The TreeView web control has a TreeNodeSrc property, you may set the
value to the xml file content in the Page_Load event. You may follow the
steps below to have a test.
1.1 Create a new WebApplication and add a TreeView Web Control onto the
WebForm1.aspx
1.2 Double-click on the WebForm1.aspx[not on any control]
1.3 Then the IDE will open the WebForm1.aspx.v b file and located in the
Page_Load Event handle function
1.4 Replace the
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles MyBase.Load
'Put user code to initialize the page here
End Sub
With
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles MyBase.Load
TreeView1.TreeN odeSrc = "<?xml version='1.0'?> <TREENODES><TRE ENODE
TEXT='Document-1'/><TREENODE TEXT='Folder-1' EXPANDED='true' ><TREENODE
TEXT='Document-2' /><TREENODE TEXT='Document-3' /></TREENODE><TREEN ODE
TEXT='Document-4'/></TREENODES>"
TreeView1.DataB ind()
End Sub
1.5 Press F5 to run the WebApplication to see if the problem persists.

2 You may also try to give the user account that used to access the
WebForm1.aspx the right to access the NavigateTree.xm l. In this case you
may indicate the TREENODESRC in the aspx page.(i.e. <iewc:treevie w
id="TreeView1" style="Z-INDEX: 101; LEFT: 8px; POSITION:
absolute; TOP: 8px" runat="server"
TREENODESRC="Na vigateTree.xml" ></iewc:treeview>)
For security concern, you may try to disable the anonymous access and
enable the windows integrated authentication. You may achieve that by
following the steps below.
2.1 Run inetmgr in the Run dialog and this will open the Internet
Information Services(IIS) Manager
2.2 Navigated to Internet Information Services/<Computer Name>/Web
Sites/Default Web Site/<WebApplication 5>, (This is the application name
that you indicated in the VS.NET IDE),
2.3 Right Click on the WebApplication5 and select Properties, this will
open the WebApplication5 Properties dialog.
2.4 Select Directory security and then select Authentication and access
control section click the Edit button. This will open the Authentication
methods dialog
2.5 Uncheck the Enable anonymous access and check the Integrated Windows
authentication. This will enable the browse use the log on user account to
access the aspx page, I assume the account have the permission to access
the NavigateTree.xm l file.
2.6 You may have a try and let me know the result. If you have any related
question please feel free to let me know.

Nov 20 '05 #9
Post Notify Successful

Nov 20 '05 #10

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

Similar topics

42
11542
by: lauren quantrell | last post by:
So many postings on not to use the treeview control, but nothing recently. Is it safe to swim there yet with Access 2000-Access 2003?
5
19891
by: SoKool | last post by:
Can anyone point me to a site where I can get a free treeview control to use in ASP .NET or any tutorial that can help me build my own treeview control. I intend to use a treeview to generate a dynamic menu by collating data from a Sql Server Table. Many thanks.
1
6678
by: paradox | last post by:
I want to have a TreeView that shows an image on some items, but not all. Basically, if a certain condition is true, a caution icon is placed next to the treeview item. The problem is that, by adding a ImageList to the TreeView, the ImageIndex property of the items in the TreeView defaults to 0. I could put a blank icon in the ImageList and make it the 0 index image, however, this makes an ugly space. Would I have to create my own...
3
2831
by: Peter | last post by:
Hello, We are inserting a side menu to our application using a class that is writing HTML on all our pages. This is a part of the code as an example: writer.Write(" <table WIDTH=""100%"" BORDER=""0"" CELLSPACING=""0"" CELLPADDING=""0"" ID=""Table1""> " & vbNewLine) writer.Write(" <tr>" & vbNewLine) writer.Write(" <td>" & vbNewLine)
6
4933
by: L.M | last post by:
Hello, I knew how to use the treeview under VB6. After migrating to .NET, well, I'm lost. I try to add a new node, either to the same level or as a child to a selected node in the treeview. However, either it only add it to the root level or it only add it on level below, doesn't matter what I select. And in some case, I just get an exception.
14
15095
by: Mr.D | last post by:
How do I save/load the contents of a Treeview to a file? I have found several good examples written i VB6, but not a single one for VB.NET. Please help. ---- Tim
3
3828
by: christof | last post by:
I've got a really easy problem, please help me: There are two pages in one I'm creating a TreeView like that: TreeView dbTree = new TreeView(); TreeNode dbTreeRoot = new TreeNode("Root"); dbTree.Nodes.Add(dbTreeRoot); .. ..
2
7497
by: Tymbow | last post by:
I'm building a web application that is analogous to the Windows XP file explorer in function. The left column contains a TreeView, and the right column a DataGrid populated by selecting TreeView nodes. The TreeView populates dynamically as there are a significant number of nodes. The DataGrid displays both the items and the nodes from the TreeView. Using the explorer analogy this means the TreeView shows folders, and the DataGrid folders...
1
693
by: kvicky | last post by:
I am trying to load child nodes to a TreeNode in a TreeView in a ASP.net web application. The Treeview with parent nodes are loaded on a Page_load while doing if( ! ISPostback ) and then in the Treeview event I am dynamically trying to load the child nodes to the exisisting TreeView. The problem is since the TreeView is being loaded on not a Postback, I am unable to refer to any node in the TreeView event. Can anybody tell me how to...
8
12772
by: Matt MacDonald | last post by:
Hi All, I have a form that displays hierarchical categories in a treeview. Ok so far so good. What I was to do is have users be able to select a node in the treeview as part of filling out the form. I only want to allow single selection, so using checkboxes is out of the question. It works as is, but it makes the form very cumbersome if every time that a user selects a node, the whole page has to reload. Is there a way to have a node...
0
8739
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9238
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9088
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8052
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...
0
5995
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
4502
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...
1
3207
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2602
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2147
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.