472,145 Members | 1,423 Online
Bytes | Software Development & Data Engineering Community
Post +

Home Posts Topics Members FAQ

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

Formatting/Display in a DataGrid

Hi,

Is there anyway I can make a column thats databound into a hyperlink to
navigate to another page?
Suppose I have 3 columns: SortOrder, Description, UserName

for eg:
<Columns>
<asp:HyperLinkColumn Text="View" DataNavigateUrlField="UserId"
DataNavigateUrlFormatString="ViewInfo.aspx?id={0}" >
<HeaderStyle BackColor="#CCCCCC"></HeaderStyle>
<ItemStyle HorizontalAlign="Center"></ItemStyle>
</asp:HyperLinkColumn>
<asp:BoundColumn DataField="SortOrder" HeaderText="Sort Order"
SortExpression="SortOrder">
<ItemStyle HorizontalAlign="Center" Width="12%"></ItemStyle>
</asp:BoundColumn>
<asp:BoundColumn DataField="Description" HeaderText="Description">
<ItemStyle HorizontalAlign="Center"></ItemStyle>
</asp:BoundColumn>
<asp:BoundColumn DataField="UserName" HeaderText="UserName"
SortExpression="UserName">
<ItemStyle HorizontalAlign="Center"></ItemStyle>
</asp:BoundColumn>
</Columns>
Instead of having HyperLinkColumn with "View" as text, how can I make
"Description" or whatever column I want
into the hyperlink (with the relevant info to display) and navigate it to
"ViewInfo.aspx?id={0}
please Advice,
Stephen
May 23 '06 #1
5 2422
using templates :-)

templates give you all teh free in the world to add something into the cell
in a row...

after the last </asp:BoundColumn>
add this for example: (just copy/paste)

<asp:TemplateField>
<ItemTemplate>
<%#Eval("Description")%> <br />
<asp:HyperLink runat="server" id="myLink" text="more..."
NavigateUrl='<%# Eval("UserId", "ViewInfo.aspx?id={0}") %>' />
</ItemTemplate>
</asp:TemplateField>

and then tell me the result ;-)

--

Bruno Alexandre
(a Portuguese in Københanv, Danmark)
"Stephen" <st********@hotmail.com> escreveu na mensagem
news:OF**************@TK2MSFTNGP02.phx.gbl...
Hi,

Is there anyway I can make a column thats databound into a hyperlink to
navigate to another page?
Suppose I have 3 columns: SortOrder, Description, UserName

for eg:
<Columns>
<asp:HyperLinkColumn Text="View" DataNavigateUrlField="UserId"
DataNavigateUrlFormatString="ViewInfo.aspx?id={0}" >
<HeaderStyle BackColor="#CCCCCC"></HeaderStyle>
<ItemStyle HorizontalAlign="Center"></ItemStyle>
</asp:HyperLinkColumn>
<asp:BoundColumn DataField="SortOrder" HeaderText="Sort Order"
SortExpression="SortOrder">
<ItemStyle HorizontalAlign="Center" Width="12%"></ItemStyle>
</asp:BoundColumn>
<asp:BoundColumn DataField="Description" HeaderText="Description">
<ItemStyle HorizontalAlign="Center"></ItemStyle>
</asp:BoundColumn>
<asp:BoundColumn DataField="UserName" HeaderText="UserName"
SortExpression="UserName">
<ItemStyle HorizontalAlign="Center"></ItemStyle>
</asp:BoundColumn>
</Columns>
Instead of having HyperLinkColumn with "View" as text, how can I make
"Description" or whatever column I want
into the hyperlink (with the relevant info to display) and navigate it to
"ViewInfo.aspx?id={0}
please Advice,
Stephen

May 23 '06 #2
Hi Bruno,

Thanks for the info but..... I tried your code suggestion but it still gives
me this error:

<Columns>
<asp:HyperLinkColumn Text="View" DataNavigateUrlField="UserId"
DataNavigateUrlFormatString="ViewInfo.aspx?id={0}" >
<HeaderStyle BackColor="#CCCCCC"></HeaderStyle>
<ItemStyle HorizontalAlign="Center"></ItemStyle>
</asp:HyperLinkColumn>
<asp:BoundColumn DataField="SortOrder" HeaderText="Sort Order"
SortExpression="SortOrder">
<ItemStyle HorizontalAlign="Center" Width="12%"></ItemStyle>
</asp:BoundColumn>
<asp:BoundColumn DataField="Description" HeaderText="Description">
<ItemStyle HorizontalAlign="Center"></ItemStyle>
</asp:BoundColumn>
<asp:BoundColumn DataField="UserName" HeaderText="UserName"
SortExpression="UserName">
<ItemStyle HorizontalAlign="Center"></ItemStyle>
</asp:BoundColumn>
<asp:Templatecolumn>
<ItemTemplate>
<%# DataBinder.Eval(Container.DataItem, "Description") %>
<br />
<asp:HyperLink runat="server" id="myLink" text="more..." NavigateUrl='<%#
DataBinder.Eval("Ruleid", "ViewInfo.aspx?id={0}") %>' />
</ItemTemplate>
</asp:Templatecolumn>
</Columns>
gives me this error:

DataBinder.Eval: 'System.String' does not contain a property with the name
ViewInfo.
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.Web.HttpException: DataBinder.Eval:
'System.String' does not contain a property with the name ViewInfo.

Source Error:
<%# DataBinder.Eval(Container.DataItem, "Description") %>
<br />
<asp:HyperLink runat="server" id="myLink" text="more..." NavigateUrl='<%#
DataBinder.Eval("Ruleid", "ViewInfo.aspx?id={0}") %>' />
</ItemTemplate>
</asp:Templatecolumn>

"Bruno Alexandre" <br*********@gmail.com> wrote in message
news:e8**************@TK2MSFTNGP02.phx.gbl...
using templates :-)

templates give you all teh free in the world to add something into the cell in a row...

after the last </asp:BoundColumn>
add this for example: (just copy/paste)

<asp:TemplateField>
<ItemTemplate>
<%#Eval("Description")%> <br />
<asp:HyperLink runat="server" id="myLink" text="more..."
NavigateUrl='<%# Eval("UserId", "ViewInfo.aspx?id={0}") %>' />
</ItemTemplate>
</asp:TemplateField>

and then tell me the result ;-)

--

Bruno Alexandre
(a Portuguese in Københanv, Danmark)
"Stephen" <st********@hotmail.com> escreveu na mensagem
news:OF**************@TK2MSFTNGP02.phx.gbl...
Hi,

Is there anyway I can make a column thats databound into a hyperlink to
navigate to another page?
Suppose I have 3 columns: SortOrder, Description, UserName

for eg:
<Columns>
<asp:HyperLinkColumn Text="View" DataNavigateUrlField="UserId"
DataNavigateUrlFormatString="ViewInfo.aspx?id={0}" >
<HeaderStyle BackColor="#CCCCCC"></HeaderStyle>
<ItemStyle HorizontalAlign="Center"></ItemStyle>
</asp:HyperLinkColumn>
<asp:BoundColumn DataField="SortOrder" HeaderText="Sort Order"
SortExpression="SortOrder">
<ItemStyle HorizontalAlign="Center" Width="12%"></ItemStyle>
</asp:BoundColumn>
<asp:BoundColumn DataField="Description" HeaderText="Description">
<ItemStyle HorizontalAlign="Center"></ItemStyle>
</asp:BoundColumn>
<asp:BoundColumn DataField="UserName" HeaderText="UserName"
SortExpression="UserName">
<ItemStyle HorizontalAlign="Center"></ItemStyle>
</asp:BoundColumn>
</Columns>
Instead of having HyperLinkColumn with "View" as text, how can I make
"Description" or whatever column I want
into the hyperlink (with the relevant info to display) and navigate it to "ViewInfo.aspx?id={0}
please Advice,
Stephen


May 23 '06 #3
remove the DataBinder... just Eval("name") like my example

or Eval("string{0}", "name")

or the same using Bind("name") if you nees to pass the value!

it's the way to do in ASP.NET 2.0

--

Bruno Alexandre
(a Portuguese in Københanv, Danmark)
"Stephen" <st********@hotmail.com> escreveu na mensagem
news:Oc**************@TK2MSFTNGP04.phx.gbl...
Hi Bruno,

Thanks for the info but..... I tried your code suggestion but it still
gives
me this error:

<Columns>
<asp:HyperLinkColumn Text="View" DataNavigateUrlField="UserId"
DataNavigateUrlFormatString="ViewInfo.aspx?id={0}" >
<HeaderStyle BackColor="#CCCCCC"></HeaderStyle>
<ItemStyle HorizontalAlign="Center"></ItemStyle>
</asp:HyperLinkColumn>
<asp:BoundColumn DataField="SortOrder" HeaderText="Sort Order"
SortExpression="SortOrder">
<ItemStyle HorizontalAlign="Center" Width="12%"></ItemStyle>
</asp:BoundColumn>
<asp:BoundColumn DataField="Description" HeaderText="Description">
<ItemStyle HorizontalAlign="Center"></ItemStyle>
</asp:BoundColumn>
<asp:BoundColumn DataField="UserName" HeaderText="UserName"
SortExpression="UserName">
<ItemStyle HorizontalAlign="Center"></ItemStyle>
</asp:BoundColumn>
<asp:Templatecolumn>
<ItemTemplate>
<%# DataBinder.Eval(Container.DataItem, "Description") %>
<br />
<asp:HyperLink runat="server" id="myLink" text="more..." NavigateUrl='<%#
DataBinder.Eval("Ruleid", "ViewInfo.aspx?id={0}") %>' />
</ItemTemplate>
</asp:Templatecolumn>
</Columns>
gives me this error:

DataBinder.Eval: 'System.String' does not contain a property with the name
ViewInfo.
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.Web.HttpException: DataBinder.Eval:
'System.String' does not contain a property with the name ViewInfo.

Source Error:
<%# DataBinder.Eval(Container.DataItem, "Description") %>
<br />
<asp:HyperLink runat="server" id="myLink" text="more..." NavigateUrl='<%#
DataBinder.Eval("Ruleid", "ViewInfo.aspx?id={0}") %>' />
</ItemTemplate>
</asp:Templatecolumn>

"Bruno Alexandre" <br*********@gmail.com> wrote in message
news:e8**************@TK2MSFTNGP02.phx.gbl...
using templates :-)

templates give you all teh free in the world to add something into the

cell
in a row...

after the last </asp:BoundColumn>
add this for example: (just copy/paste)

<asp:TemplateField>
<ItemTemplate>
<%#Eval("Description")%> <br />
<asp:HyperLink runat="server" id="myLink" text="more..."
NavigateUrl='<%# Eval("UserId", "ViewInfo.aspx?id={0}") %>' />
</ItemTemplate>
</asp:TemplateField>

and then tell me the result ;-)

--

Bruno Alexandre
(a Portuguese in Københanv, Danmark)
"Stephen" <st********@hotmail.com> escreveu na mensagem
news:OF**************@TK2MSFTNGP02.phx.gbl...
> Hi,
>
> Is there anyway I can make a column thats databound into a hyperlink to
> navigate to another page?
> Suppose I have 3 columns: SortOrder, Description, UserName
>
> for eg:
> <Columns>
> <asp:HyperLinkColumn Text="View" DataNavigateUrlField="UserId"
> DataNavigateUrlFormatString="ViewInfo.aspx?id={0}" >
> <HeaderStyle BackColor="#CCCCCC"></HeaderStyle>
> <ItemStyle HorizontalAlign="Center"></ItemStyle>
> </asp:HyperLinkColumn>
> <asp:BoundColumn DataField="SortOrder" HeaderText="Sort Order"
> SortExpression="SortOrder">
> <ItemStyle HorizontalAlign="Center" Width="12%"></ItemStyle>
> </asp:BoundColumn>
> <asp:BoundColumn DataField="Description" HeaderText="Description">
> <ItemStyle HorizontalAlign="Center"></ItemStyle>
> </asp:BoundColumn>
> <asp:BoundColumn DataField="UserName" HeaderText="UserName"
> SortExpression="UserName">
> <ItemStyle HorizontalAlign="Center"></ItemStyle>
> </asp:BoundColumn>
> </Columns>
>
>
> Instead of having HyperLinkColumn with "View" as text, how can I make
> "Description" or whatever column I want
> into the hyperlink (with the relevant info to display) and navigate it to > "ViewInfo.aspx?id={0}
>
>
> please Advice,
> Stephen
>
>



May 23 '06 #4

Thanks for the reply... I am using v1.x
anyways I tried it this way and it worked but would welcome suggestion from
you too

<ItemTemplate>
<%# DataBinder.Eval(Container.DataItem, "Description") %>
<br />
<asp:HyperLink runat="server" id="myLink" text="more..." NavigateUrl='<%#
"ViewInfo.aspx.aspx?id=" & Container.DataItem("UserId") %>' />
</ItemTemplate>

Thanks,
Stephen
"Bruno Alexandre" <br*********@gmail.com> wrote in message
news:ud**************@TK2MSFTNGP04.phx.gbl...
remove the DataBinder... just Eval("name") like my example

or Eval("string{0}", "name")

or the same using Bind("name") if you nees to pass the value!

it's the way to do in ASP.NET 2.0

--

Bruno Alexandre
(a Portuguese in Københanv, Danmark)
"Stephen" <st********@hotmail.com> escreveu na mensagem
news:Oc**************@TK2MSFTNGP04.phx.gbl...
Hi Bruno,

Thanks for the info but..... I tried your code suggestion but it still
gives
me this error:

<Columns>
<asp:HyperLinkColumn Text="View" DataNavigateUrlField="UserId"
DataNavigateUrlFormatString="ViewInfo.aspx?id={0}" >
<HeaderStyle BackColor="#CCCCCC"></HeaderStyle>
<ItemStyle HorizontalAlign="Center"></ItemStyle>
</asp:HyperLinkColumn>
<asp:BoundColumn DataField="SortOrder" HeaderText="Sort Order"
SortExpression="SortOrder">
<ItemStyle HorizontalAlign="Center" Width="12%"></ItemStyle>
</asp:BoundColumn>
<asp:BoundColumn DataField="Description" HeaderText="Description">
<ItemStyle HorizontalAlign="Center"></ItemStyle>
</asp:BoundColumn>
<asp:BoundColumn DataField="UserName" HeaderText="UserName"
SortExpression="UserName">
<ItemStyle HorizontalAlign="Center"></ItemStyle>
</asp:BoundColumn>
<asp:Templatecolumn>
<ItemTemplate>
<%# DataBinder.Eval(Container.DataItem, "Description") %>
<br />
<asp:HyperLink runat="server" id="myLink" text="more..." NavigateUrl='<%# DataBinder.Eval("Ruleid", "ViewInfo.aspx?id={0}") %>' />
</ItemTemplate>
</asp:Templatecolumn>
</Columns>
gives me this error:

DataBinder.Eval: 'System.String' does not contain a property with the name ViewInfo.
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.Web.HttpException: DataBinder.Eval:
'System.String' does not contain a property with the name ViewInfo.

Source Error:
<%# DataBinder.Eval(Container.DataItem, "Description") %>
<br />
<asp:HyperLink runat="server" id="myLink" text="more..." NavigateUrl='<%# DataBinder.Eval("Ruleid", "ViewInfo.aspx?id={0}") %>' />
</ItemTemplate>
</asp:Templatecolumn>

"Bruno Alexandre" <br*********@gmail.com> wrote in message
news:e8**************@TK2MSFTNGP02.phx.gbl...
using templates :-)

templates give you all teh free in the world to add something into the

cell
in a row...

after the last </asp:BoundColumn>
add this for example: (just copy/paste)

<asp:TemplateField>
<ItemTemplate>
<%#Eval("Description")%> <br />
<asp:HyperLink runat="server" id="myLink" text="more..."
NavigateUrl='<%# Eval("UserId", "ViewInfo.aspx?id={0}") %>' /> </ItemTemplate>
</asp:TemplateField>

and then tell me the result ;-)

--

Bruno Alexandre
(a Portuguese in Københanv, Danmark)
"Stephen" <st********@hotmail.com> escreveu na mensagem
news:OF**************@TK2MSFTNGP02.phx.gbl...
> Hi,
>
> Is there anyway I can make a column thats databound into a hyperlink to > navigate to another page?
> Suppose I have 3 columns: SortOrder, Description, UserName
>
> for eg:
> <Columns>
> <asp:HyperLinkColumn Text="View" DataNavigateUrlField="UserId"
> DataNavigateUrlFormatString="ViewInfo.aspx?id={0}" >
> <HeaderStyle BackColor="#CCCCCC"></HeaderStyle>
> <ItemStyle HorizontalAlign="Center"></ItemStyle>
> </asp:HyperLinkColumn>
> <asp:BoundColumn DataField="SortOrder" HeaderText="Sort Order"
> SortExpression="SortOrder">
> <ItemStyle HorizontalAlign="Center" Width="12%"></ItemStyle>
> </asp:BoundColumn>
> <asp:BoundColumn DataField="Description" HeaderText="Description">
> <ItemStyle HorizontalAlign="Center"></ItemStyle>
> </asp:BoundColumn>
> <asp:BoundColumn DataField="UserName" HeaderText="UserName"
> SortExpression="UserName">
> <ItemStyle HorizontalAlign="Center"></ItemStyle>
> </asp:BoundColumn>
> </Columns>
>
>
> Instead of having HyperLinkColumn with "View" as text, how can I make
> "Description" or whatever column I want
> into the hyperlink (with the relevant info to display) and navigate
it to
> "ViewInfo.aspx?id={0}
>
>
> please Advice,
> Stephen
>
>



May 23 '06 #5
I was using 2.0 - I passed directly from classic asp to asp.net 2.0, so I
never did anything in 1.x ...

sorry,

but if it works... better :-)

I just love 2.0 version ;-) and for that GridView is really nicer to work
than the old datagrid (seeing all the examples I see in both controls)

you can use the template to show normal rows (itens), the update row
(EditItem), the select row, etc...
check for templateItem under datagrid in your Help file

--

Bruno Alexandre
(a Portuguese in Københanv, Danmark)
"Stephen" <st********@hotmail.com> escreveu na mensagem
news:uN**************@TK2MSFTNGP05.phx.gbl...

Thanks for the reply... I am using v1.x
anyways I tried it this way and it worked but would welcome suggestion
from
you too

<ItemTemplate>
<%# DataBinder.Eval(Container.DataItem, "Description") %>
<br />
<asp:HyperLink runat="server" id="myLink" text="more..." NavigateUrl='<%#
"ViewInfo.aspx.aspx?id=" & Container.DataItem("UserId") %>' />
</ItemTemplate>

Thanks,
Stephen
"Bruno Alexandre" <br*********@gmail.com> wrote in message
news:ud**************@TK2MSFTNGP04.phx.gbl...
remove the DataBinder... just Eval("name") like my example

or Eval("string{0}", "name")

or the same using Bind("name") if you nees to pass the value!

it's the way to do in ASP.NET 2.0

--

Bruno Alexandre
(a Portuguese in Københanv, Danmark)
"Stephen" <st********@hotmail.com> escreveu na mensagem
news:Oc**************@TK2MSFTNGP04.phx.gbl...
> Hi Bruno,
>
> Thanks for the info but..... I tried your code suggestion but it still
> gives
> me this error:
>
> <Columns>
> <asp:HyperLinkColumn Text="View" DataNavigateUrlField="UserId"
> DataNavigateUrlFormatString="ViewInfo.aspx?id={0}" >
> <HeaderStyle BackColor="#CCCCCC"></HeaderStyle>
> <ItemStyle HorizontalAlign="Center"></ItemStyle>
> </asp:HyperLinkColumn>
> <asp:BoundColumn DataField="SortOrder" HeaderText="Sort Order"
> SortExpression="SortOrder">
> <ItemStyle HorizontalAlign="Center" Width="12%"></ItemStyle>
> </asp:BoundColumn>
> <asp:BoundColumn DataField="Description" HeaderText="Description">
> <ItemStyle HorizontalAlign="Center"></ItemStyle>
> </asp:BoundColumn>
> <asp:BoundColumn DataField="UserName" HeaderText="UserName"
> SortExpression="UserName">
> <ItemStyle HorizontalAlign="Center"></ItemStyle>
> </asp:BoundColumn>
> <asp:Templatecolumn>
> <ItemTemplate>
> <%# DataBinder.Eval(Container.DataItem, "Description") %>
> <br />
> <asp:HyperLink runat="server" id="myLink" text="more..." NavigateUrl='<%# > DataBinder.Eval("Ruleid", "ViewInfo.aspx?id={0}") %>' />
> </ItemTemplate>
> </asp:Templatecolumn>
> </Columns>
>
>
> gives me this error:
>
> DataBinder.Eval: 'System.String' does not contain a property with the name > ViewInfo.
> 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.Web.HttpException: DataBinder.Eval:
> 'System.String' does not contain a property with the name ViewInfo.
>
> Source Error:
>
>
> <%# DataBinder.Eval(Container.DataItem, "Description") %>
> <br />
> <asp:HyperLink runat="server" id="myLink" text="more..." NavigateUrl='<%# > DataBinder.Eval("Ruleid", "ViewInfo.aspx?id={0}") %>' />
> </ItemTemplate>
> </asp:Templatecolumn>
>
>
>
>
>
> "Bruno Alexandre" <br*********@gmail.com> wrote in message
> news:e8**************@TK2MSFTNGP02.phx.gbl...
>> using templates :-)
>>
>> templates give you all teh free in the world to add something into the
> cell
>> in a row...
>>
>> after the last </asp:BoundColumn>
>> add this for example: (just copy/paste)
>>
>> <asp:TemplateField>
>> <ItemTemplate>
>> <%#Eval("Description")%> <br />
>> <asp:HyperLink runat="server" id="myLink" text="more..."
>> NavigateUrl='<%# Eval("UserId", "ViewInfo.aspx?id={0}") %>' /> >> </ItemTemplate>
>> </asp:TemplateField>
>>
>> and then tell me the result ;-)
>>
>> --
>>
>> Bruno Alexandre
>> (a Portuguese in Københanv, Danmark)
>>
>>
>> "Stephen" <st********@hotmail.com> escreveu na mensagem
>> news:OF**************@TK2MSFTNGP02.phx.gbl...
>> > Hi,
>> >
>> > Is there anyway I can make a column thats databound into a hyperlink to >> > navigate to another page?
>> > Suppose I have 3 columns: SortOrder, Description, UserName
>> >
>> > for eg:
>> > <Columns>
>> > <asp:HyperLinkColumn Text="View" DataNavigateUrlField="UserId"
>> > DataNavigateUrlFormatString="ViewInfo.aspx?id={0}" >
>> > <HeaderStyle BackColor="#CCCCCC"></HeaderStyle>
>> > <ItemStyle HorizontalAlign="Center"></ItemStyle>
>> > </asp:HyperLinkColumn>
>> > <asp:BoundColumn DataField="SortOrder" HeaderText="Sort Order"
>> > SortExpression="SortOrder">
>> > <ItemStyle HorizontalAlign="Center" Width="12%"></ItemStyle>
>> > </asp:BoundColumn>
>> > <asp:BoundColumn DataField="Description" HeaderText="Description">
>> > <ItemStyle HorizontalAlign="Center"></ItemStyle>
>> > </asp:BoundColumn>
>> > <asp:BoundColumn DataField="UserName" HeaderText="UserName"
>> > SortExpression="UserName">
>> > <ItemStyle HorizontalAlign="Center"></ItemStyle>
>> > </asp:BoundColumn>
>> > </Columns>
>> >
>> >
>> > Instead of having HyperLinkColumn with "View" as text, how can I
>> > make
>> > "Description" or whatever column I want
>> > into the hyperlink (with the relevant info to display) and navigate it > to
>> > "ViewInfo.aspx?id={0}
>> >
>> >
>> > please Advice,
>> > Stephen
>> >
>> >
>>
>>
>
>



May 23 '06 #6

This discussion thread is closed

Replies have been disabled for this discussion.

Similar topics

reply views Thread by Chumley the Walrus | last post: by
5 posts views Thread by Jeff Cook | last post: by
7 posts views Thread by Matthew Wieder | last post: by
3 posts views Thread by Roy | last post: by
4 posts views Thread by hope | last post: by
reply views Thread by KentEMon | last post: by
2 posts views Thread by John Dann | last post: by
3 posts views Thread by Horselover Fat | last post: by
2 posts views Thread by =?Utf-8?B?Uml0YUc=?= | last post: by

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.