473,320 Members | 1,993 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,320 software developers and data experts.

Specified cast is not valid.

Hello,

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.InvalidCastException: Specified cast is not valid.
Line 176.

Source Error:
Line 174:
Line 175:
Line 176: DataRowView drv = (DataRowView) e.Item.DataItem;
Line 177:
Line 178: System.Web.UI.WebControls.Image thumb =
(System.Web.UI.WebControls.Image) e.Item.FindControl("thumbnail");
Can somebody help me?

Thanks!
Nov 17 '05 #1
10 1760
You're casting a "DataItem" as a "DataRowView" - that's an invalid cast!!
hehehe - I know I sound like your error, but it's true. You can't pretend a
DataItem is a DataRowView..

"Arjen" <bo*****@hotmail.com> wrote in message
news:bh**********@news1.tilbu1.nb.home.nl...
Hello,

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.InvalidCastException: Specified cast is not valid. Line 176.

Source Error:
Line 174:
Line 175:
Line 176: DataRowView drv = (DataRowView) e.Item.DataItem;
Line 177:
Line 178: System.Web.UI.WebControls.Image thumb =
(System.Web.UI.WebControls.Image) e.Item.FindControl("thumbnail");
Can somebody help me?

Thanks!

Nov 17 '05 #2
And now?

"Frank Drebin" <no*****@imsickofspam.com> schreef in bericht
news:eU**********************@newssvr28.news.prodi gy.com...
You're casting a "DataItem" as a "DataRowView" - that's an invalid cast!!
hehehe - I know I sound like your error, but it's true. You can't pretend a DataItem is a DataRowView..

"Arjen" <bo*****@hotmail.com> wrote in message
news:bh**********@news1.tilbu1.nb.home.nl...
Hello,

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.InvalidCastException: Specified cast is not

valid.
Line 176.

Source Error:
Line 174:
Line 175:
Line 176: DataRowView drv = (DataRowView) e.Item.DataItem;
Line 177:
Line 178: System.Web.UI.WebControls.Image thumb =
(System.Web.UI.WebControls.Image) e.Item.FindControl("thumbnail");
Can somebody help me?

Thanks!


Nov 17 '05 #3

And now, you still can't. You can only coerce a variable to pretend it's a
different type - when they are close enough..

In the same way you couldn't do this:

TreeView objMyTree = (TreeView)strSomeString;

You can't cast things that are vastly different. There is no way to coerce a
string into representing a TreeView.

"Arjen" <bo*****@hotmail.com> wrote in message
news:bh**********@news1.tilbu1.nb.home.nl...
And now?

"Frank Drebin" <no*****@imsickofspam.com> schreef in bericht
news:eU**********************@newssvr28.news.prodi gy.com...
You're casting a "DataItem" as a "DataRowView" - that's an invalid cast!! hehehe - I know I sound like your error, but it's true. You can't
pretend a
DataItem is a DataRowView..

"Arjen" <bo*****@hotmail.com> wrote in message
news:bh**********@news1.tilbu1.nb.home.nl...
Hello,

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.InvalidCastException: Specified cast is not

valid.
Line 176.

Source Error:
Line 174:
Line 175:
Line 176: DataRowView drv = (DataRowView) e.Item.DataItem;
Line 177:
Line 178: System.Web.UI.WebControls.Image thumb =
(System.Web.UI.WebControls.Image) e.Item.FindControl("thumbnail");
Can somebody help me?

Thanks!



Nov 17 '05 #4
Put a breaking point at DataRowView drv = (DataRowView) e.Item.DataItem;
Then Do a Quick Watch on e.item.DataItem or find the type of e.item.DataItem
and see what type it is
Then cast to that type
"Arjen" <bo*****@hotmail.com> wrote in message
news:bh**********@news1.tilbu1.nb.home.nl...
And now?

"Frank Drebin" <no*****@imsickofspam.com> schreef in bericht
news:eU**********************@newssvr28.news.prodi gy.com...
You're casting a "DataItem" as a "DataRowView" - that's an invalid cast!! hehehe - I know I sound like your error, but it's true. You can't
pretend a
DataItem is a DataRowView..

"Arjen" <bo*****@hotmail.com> wrote in message
news:bh**********@news1.tilbu1.nb.home.nl...
Hello,

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.InvalidCastException: Specified cast is not

valid.
Line 176.

Source Error:
Line 174:
Line 175:
Line 176: DataRowView drv = (DataRowView) e.Item.DataItem;
Line 177:
Line 178: System.Web.UI.WebControls.Image thumb =
(System.Web.UI.WebControls.Image) e.Item.FindControl("thumbnail");
Can somebody help me?

Thanks!



Nov 17 '05 #5
Here is the complete function:
private void myDataGrid_ItemDataBound(object sender,
System.Web.UI.WebControls.DataGridItemEventArgs e) {

if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType ==
ListItemType.AlternatingItem) {

DataRowView drv = (DataRowView) e.Item.DataItem;

System.Web.UI.WebControls.Image thumb = (System.Web.UI.WebControls.Image)
e.Item.FindControl("thumbnail");
thumb.Attributes.Add("OnClick", "SelectImage('" + drv["itemId"].ToString()
+ "')");

}
}

May be this helps.





"MS News (MS ILM)" <sq**********@hotmail.com> schreef in bericht
news:up**************@TK2MSFTNGP09.phx.gbl...
Put a breaking point at DataRowView drv = (DataRowView) e.Item.DataItem; Then Do a Quick Watch on e.item.DataItem or find the type of e.item.DataItem and see what type it is
Then cast to that type
"Arjen" <bo*****@hotmail.com> wrote in message
news:bh**********@news1.tilbu1.nb.home.nl...
And now?

"Frank Drebin" <no*****@imsickofspam.com> schreef in bericht
news:eU**********************@newssvr28.news.prodi gy.com...
You're casting a "DataItem" as a "DataRowView" - that's an invalid cast!! hehehe - I know I sound like your error, but it's true. You can't pretend
a
DataItem is a DataRowView..

"Arjen" <bo*****@hotmail.com> wrote in message
news:bh**********@news1.tilbu1.nb.home.nl...
> Hello,
>
> 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.InvalidCastException: Specified cast is not valid.
> Line 176.
>
> Source Error:
>
>
> Line 174:
> Line 175:
> Line 176: DataRowView drv = (DataRowView) e.Item.DataItem;
> Line 177:
> Line 178: System.Web.UI.WebControls.Image thumb =
> (System.Web.UI.WebControls.Image) e.Item.FindControl("thumbnail");
>
>
> Can somebody help me?
>
> Thanks!
>
>



Nov 17 '05 #6
I *think* in that scenario - that e is actually your DataRowView..

Set a breakpoint and add a watch to 'e' and see what it is, if it is a
DataRowView then you can just reference things as:

e["itemId"].ToString()

hth

"Arjen" <bo*****@hotmail.com> wrote in message
news:bh**********@news1.tilbu1.nb.home.nl...
Here is the complete function:
private void myDataGrid_ItemDataBound(object sender,
System.Web.UI.WebControls.DataGridItemEventArgs e) {

if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType ==
ListItemType.AlternatingItem) {

DataRowView drv = (DataRowView) e.Item.DataItem;

System.Web.UI.WebControls.Image thumb = (System.Web.UI.WebControls.Image) e.Item.FindControl("thumbnail");
thumb.Attributes.Add("OnClick", "SelectImage('" + drv["itemId"].ToString() + "')");

}
}

May be this helps.





"MS News (MS ILM)" <sq**********@hotmail.com> schreef in bericht
news:up**************@TK2MSFTNGP09.phx.gbl...
Put a breaking point at DataRowView drv = (DataRowView)

e.Item.DataItem;
Then Do a Quick Watch on e.item.DataItem or find the type of

e.item.DataItem
and see what type it is
Then cast to that type
"Arjen" <bo*****@hotmail.com> wrote in message
news:bh**********@news1.tilbu1.nb.home.nl...
And now?

"Frank Drebin" <no*****@imsickofspam.com> schreef in bericht
news:eU**********************@newssvr28.news.prodi gy.com...
> You're casting a "DataItem" as a "DataRowView" - that's an invalid

cast!!
> hehehe - I know I sound like your error, but it's true. You can't

pretend
a
> DataItem is a DataRowView..
>
> "Arjen" <bo*****@hotmail.com> wrote in message
> news:bh**********@news1.tilbu1.nb.home.nl...
> > Hello,
> >
> > 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.InvalidCastException: Specified cast is

not > valid.
> > Line 176.
> >
> > Source Error:
> >
> >
> > Line 174:
> > Line 175:
> > Line 176: DataRowView drv = (DataRowView) e.Item.DataItem;
> > Line 177:
> > Line 178: System.Web.UI.WebControls.Image thumb =
> > (System.Web.UI.WebControls.Image) e.Item.FindControl("thumbnail");
> >
> >
> > Can somebody help me?
> >
> > Thanks!
> >
> >
>
>



Nov 17 '05 #7
string thetype = e.Item.DataItem.GetType();

What do you get
"Arjen" <bo*****@hotmail.com> wrote in message
news:bh**********@news1.tilbu1.nb.home.nl...
When I change it to e["itemId"].ToString().
VS says:
Cannot apply indexing with [] to an expression of type
'System.Web.UI.WebControls.DataGridItemEventArgs'

The debug says:
object DataGridItem.DateItem
Gets or sets the data item represented by the
System.Web.UI.WebControls.DataGridItem object in the
System.Web.UI.WebControls.DataGrid

I don't know what to do now... you?
Thanks!



"Frank Drebin" <no*****@imsickofspam.com> schreef in bericht
news:sj**********************@newssvr28.news.prodi gy.com...
I *think* in that scenario - that e is actually your DataRowView..

Set a breakpoint and add a watch to 'e' and see what it is, if it is a
DataRowView then you can just reference things as:

e["itemId"].ToString()

hth

"Arjen" <bo*****@hotmail.com> wrote in message
news:bh**********@news1.tilbu1.nb.home.nl...
Here is the complete function:
private void myDataGrid_ItemDataBound(object sender,
System.Web.UI.WebControls.DataGridItemEventArgs e) {

if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType ==
ListItemType.AlternatingItem) {

DataRowView drv = (DataRowView) e.Item.DataItem;

System.Web.UI.WebControls.Image thumb =

(System.Web.UI.WebControls.Image)
e.Item.FindControl("thumbnail");
thumb.Attributes.Add("OnClick", "SelectImage('" +

drv["itemId"].ToString()
+ "')");

}
}

May be this helps.





"MS News (MS ILM)" <sq**********@hotmail.com> schreef in bericht
news:up**************@TK2MSFTNGP09.phx.gbl...
> Put a breaking point at DataRowView drv = (DataRowView)
e.Item.DataItem;
> Then Do a Quick Watch on e.item.DataItem or find the type of
e.item.DataItem
> and see what type it is
> Then cast to that type
>
>
> "Arjen" <bo*****@hotmail.com> wrote in message
> news:bh**********@news1.tilbu1.nb.home.nl...
> > And now?
> >
> >
> >
> >
> >
> > "Frank Drebin" <no*****@imsickofspam.com> schreef in bericht
> > news:eU**********************@newssvr28.news.prodi gy.com...
> > > You're casting a "DataItem" as a "DataRowView" - that's an invalid > cast!!
> > > hehehe - I know I sound like your error, but it's true. You can't > pretend
> > a
> > > DataItem is a DataRowView..
> > >
> > > "Arjen" <bo*****@hotmail.com> wrote in message
> > > news:bh**********@news1.tilbu1.nb.home.nl...
> > > > Hello,
> > > >
> > > > 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.InvalidCastException: Specified cast

is not
> > > valid.
> > > > Line 176.
> > > >
> > > > Source Error:
> > > >
> > > >
> > > > Line 174:
> > > > Line 175:
> > > > Line 176: DataRowView drv = (DataRowView) e.Item.DataItem;
> > > > Line 177:
> > > > Line 178: System.Web.UI.WebControls.Image thumb =
> > > > (System.Web.UI.WebControls.Image) e.Item.FindControl("thumbnail"); > > > >
> > > >
> > > > Can somebody help me?
> > > >
> > > > Thanks!
> > > >
> > > >
> > >
> > >
> >
> >
>
>



Nov 17 '05 #8
> I *think* in that scenario - that e is actually your DataRowView.

"e" is an instance of DataGridItemEventArgs. "e.Item" is the member to look
at. It can be one of several possible types, such as a heading section, a
footer section, or a data row. However, setting a breakpoint and doing a
watch should indeed revela what e.Item is.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
http://www.takempis.com
Neither a follower nor a lender be.

"Frank Drebin" <no*****@imsickofspam.com> wrote in message
news:sj**********************@newssvr28.news.prodi gy.com...
I *think* in that scenario - that e is actually your DataRowView..

Set a breakpoint and add a watch to 'e' and see what it is, if it is a
DataRowView then you can just reference things as:

e["itemId"].ToString()

hth

"Arjen" <bo*****@hotmail.com> wrote in message
news:bh**********@news1.tilbu1.nb.home.nl...
Here is the complete function:
private void myDataGrid_ItemDataBound(object sender,
System.Web.UI.WebControls.DataGridItemEventArgs e) {

if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType ==
ListItemType.AlternatingItem) {

DataRowView drv = (DataRowView) e.Item.DataItem;

System.Web.UI.WebControls.Image thumb = (System.Web.UI.WebControls.Image)
e.Item.FindControl("thumbnail");
thumb.Attributes.Add("OnClick", "SelectImage('" +

drv["itemId"].ToString()
+ "')");

}
}

May be this helps.





"MS News (MS ILM)" <sq**********@hotmail.com> schreef in bericht
news:up**************@TK2MSFTNGP09.phx.gbl...
Put a breaking point at DataRowView drv = (DataRowView)

e.Item.DataItem;
Then Do a Quick Watch on e.item.DataItem or find the type of

e.item.DataItem
and see what type it is
Then cast to that type
"Arjen" <bo*****@hotmail.com> wrote in message
news:bh**********@news1.tilbu1.nb.home.nl...
> And now?
>
>
>
>
>
> "Frank Drebin" <no*****@imsickofspam.com> schreef in bericht
> news:eU**********************@newssvr28.news.prodi gy.com...
> > You're casting a "DataItem" as a "DataRowView" - that's an invalid
cast!!
> > hehehe - I know I sound like your error, but it's true. You can't
pretend
> a
> > DataItem is a DataRowView..
> >
> > "Arjen" <bo*****@hotmail.com> wrote in message
> > news:bh**********@news1.tilbu1.nb.home.nl...
> > > Hello,
> > >
> > > 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.InvalidCastException: Specified cast
is not
> > valid.
> > > Line 176.
> > >
> > > Source Error:
> > >
> > >
> > > Line 174:
> > > Line 175:
> > > Line 176: DataRowView drv = (DataRowView) e.Item.DataItem;
> > > Line 177:
> > > Line 178: System.Web.UI.WebControls.Image thumb =
> > > (System.Web.UI.WebControls.Image)

e.Item.FindControl("thumbnail"); > > >
> > >
> > > Can somebody help me?
> > >
> > > Thanks!
> > >
> > >
> >
> >
>
>



Nov 17 '05 #9
"Arjen" <bo*****@hotmail.com> wrote
Line 176: DataRowView drv = (DataRowView) e.Item.DataItem;

I use now a datagrid and the IBS a datalist.

Some body else a solution?


Arjen,
If you use a DataSet to bind the DataList, then that is the correct syntax.

However, if you use a SqlDataReader to bind, then you must cast the
DataItem to a System.Data.Common.DbDataRecord.
e.g.
System.Data.Common.DbDataRecord dbDataRecord =
(System.Data.Common.DbDataRecord) e.Item.DataItem;
String s = dbDataRecord.GetString(0);

--

Thanks,
Carl Prothman
Microsoft ASP.NET MVP
http://www.able-consulting.com

Nov 17 '05 #10
I said look at the e.Item property. It's not a Collection.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
http://www.takempis.com
Neither a follower nor a lender be.

"Arjen" <bo*****@hotmail.com> wrote in message
news:bh**********@news1.tilbu1.nb.home.nl...
When I change it to e["itemId"].ToString().
VS says:
Cannot apply indexing with [] to an expression of type
'System.Web.UI.WebControls.DataGridItemEventArgs'

The debug says:
object DataGridItem.DateItem
Gets or sets the data item represented by the
System.Web.UI.WebControls.DataGridItem object in the
System.Web.UI.WebControls.DataGrid

I don't know what to do now... you?
Thanks!



"Frank Drebin" <no*****@imsickofspam.com> schreef in bericht
news:sj**********************@newssvr28.news.prodi gy.com...
I *think* in that scenario - that e is actually your DataRowView..

Set a breakpoint and add a watch to 'e' and see what it is, if it is a
DataRowView then you can just reference things as:

e["itemId"].ToString()

hth

"Arjen" <bo*****@hotmail.com> wrote in message
news:bh**********@news1.tilbu1.nb.home.nl...
Here is the complete function:
private void myDataGrid_ItemDataBound(object sender,
System.Web.UI.WebControls.DataGridItemEventArgs e) {

if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType ==
ListItemType.AlternatingItem) {

DataRowView drv = (DataRowView) e.Item.DataItem;

System.Web.UI.WebControls.Image thumb =

(System.Web.UI.WebControls.Image)
e.Item.FindControl("thumbnail");
thumb.Attributes.Add("OnClick", "SelectImage('" +

drv["itemId"].ToString()
+ "')");

}
}

May be this helps.





"MS News (MS ILM)" <sq**********@hotmail.com> schreef in bericht
news:up**************@TK2MSFTNGP09.phx.gbl...
> Put a breaking point at DataRowView drv = (DataRowView)
e.Item.DataItem;
> Then Do a Quick Watch on e.item.DataItem or find the type of
e.item.DataItem
> and see what type it is
> Then cast to that type
>
>
> "Arjen" <bo*****@hotmail.com> wrote in message
> news:bh**********@news1.tilbu1.nb.home.nl...
> > And now?
> >
> >
> >
> >
> >
> > "Frank Drebin" <no*****@imsickofspam.com> schreef in bericht
> > news:eU**********************@newssvr28.news.prodi gy.com...
> > > You're casting a "DataItem" as a "DataRowView" - that's an invalid > cast!!
> > > hehehe - I know I sound like your error, but it's true. You can't > pretend
> > a
> > > DataItem is a DataRowView..
> > >
> > > "Arjen" <bo*****@hotmail.com> wrote in message
> > > news:bh**********@news1.tilbu1.nb.home.nl...
> > > > Hello,
> > > >
> > > > 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.InvalidCastException: Specified cast

is not
> > > valid.
> > > > Line 176.
> > > >
> > > > Source Error:
> > > >
> > > >
> > > > Line 174:
> > > > Line 175:
> > > > Line 176: DataRowView drv = (DataRowView) e.Item.DataItem;
> > > > Line 177:
> > > > Line 178: System.Web.UI.WebControls.Image thumb =
> > > > (System.Web.UI.WebControls.Image) e.Item.FindControl("thumbnail"); > > > >
> > > >
> > > > Can somebody help me?
> > > >
> > > > Thanks!
> > > >
> > > >
> > >
> > >
> >
> >
>
>



Nov 17 '05 #11

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

Similar topics

0
by: Tao | last post by:
I just upgraded .NET framework to 1.1 and VS.Net to 2003 version and tried to test it out. I created an ASP.NET project using the wizard and tried to run it by hitting "F5". I got an exception:...
4
by: Tyro | last post by:
Can someone shed some light on my error here? Thanks! Specified cast is not valid. Exception Details: System.InvalidCastException: Specified cast is not valid. Source Error: Stack Trace:
3
by: PK9 | last post by:
I am looking for assistance in pinpointing the cause of the following exception. I am getting a "Specified Cast is not valid" exception on my page. I am trying to populate a datagrid. One of my...
2
by: Fabian | last post by:
Hi, I work with asp.net 2.0 and I have a intermittent error, only happens a few times a day. In the page I evaluate a Query String and then I get data form a database. The code snipped: ...
3
by: VB Programmer | last post by:
I am setting up forms authentication. In my code I keep getting this error. Any ideas? Error.... Server Error in '/LandOLots' Application....
0
by: QA | last post by:
I am using a Business Scorecard Accelarator in a Sharepoint Portal 2003 using SQL Server 2005 I am getting the following error: Error,5/7/2005 10:50:14 AM,580,AUE1\Administrator,"Specified cast is...
0
by: Alan Z. Scharf | last post by:
this question in datagrid group for several days with no repsonse. I'm hoping for an answer her because of greater activity in this group. No cross-posting intended. Thanks....
8
by: Gamma | last post by:
I'm trying to inherit subclass from System.Diagnostics.Process, but whenever I cast a "Process" object to it's subclass, I encounter an exception "System.InvalidCastException" ("Specified cast is...
3
by: =?Utf-8?B?UGF1bCBQcmV3ZXR0?= | last post by:
I'm attempting to use LINQ to insert a record into a child table and I'm receiving a "Specified cast is not valid" error that has something to do w/ the keys involved. The stack trace is: ...
2
by: vinrin | last post by:
Thank for your answer. :-) call CheckEmptyNode (treeview) public void CheckEmptyNode( Object N ) { Microsoft.Web.UI.WebControls.TreeNode menuNode = null; ...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
0
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...

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.