PC Review


Reply
Thread Tools Rate Thread

AJAX extended radiobuttonlist unselects selected value in popup

 
 
SAL
Guest
Posts: n/a
 
      5th Sep 2008
hello,
I'm using a radiobuttonlist in an updatepanel in an item template in a
Gridview control. I'm populating the radiobuttonlist in the RowDataBound
event. I have the control toolkit registered in the page and I've got code
to get the selected value from it in the
Radiobuttonlist_SelectedIndexChanged event.
The code in there is:

Protected Sub rblFMSValue_SelectedIndexChanged(ByVal sender As Object, ByVal
e As System.EventArgs)
If Not (String.IsNullOrEmpty(rblFMSValue.SelectedValue)) Then
Dim s As String = rblFMSValue.SelectedValue
Dim pos As Integer = s.IndexOf(": ")
s = s.Substring(pos + 2)
PopupControlExtender.GetProxyForCurrentPopup(Me.Page).Commit(s)
End If
End Sub

But, when the code block get executed, the SelectedValue of the RBL is
always an empty string so the code within the if block never executes. It
never dismisses the popup after the user selects an item and unselects the
item selected (from the user's point of view). I have the Autopostback
property set to True and the EnableViewState property set to True. What
could the issue be?

S


 
Reply With Quote
 
 
 
 
Allen Chen [MSFT]
Guest
Posts: n/a
 
      8th Sep 2008
Hi Steve,

As you said:
==================================================
I'm populating the radiobuttonlist in the RowDataBound event
==================================================
Could you tell me how do you do this? Is the RadioButtonList control
defined in the aspx or created dynamically in the RowDataBound event
handler?
In addition, where do you add the event handler? Please note if it's done
in the RowDataBound event handler the SelectedIndexChanged event handler
will not fire because RowDataBound event doesn't fire on postback (if
you're using DataSource control or bind the GridView on the first page
load, and not call GridView.DataBind() method on postback explicitly). Thus
the SelectedIndexChanged event handler is not attached to the
RadioButtonList control and will not fire at all.

If my guess above is correct you can attach the event handler in the inline
code
<asp:RadioButtonList AutoPostBack="true" ID="RadioButtonList1"
runat="server"
onselectedindexchanged="rblFMSValue_SelectedIndexChanged">

If my guess is wrong please send me a demo project that can reproduce this
problem. I'll have a look and investigate.

Regards,
Allen Chen

--------------------
| From: "SAL" <(E-Mail Removed)>
| Subject: AJAX extended radiobuttonlist unselects selected value in popup
| Date: Fri, 5 Sep 2008 12:11:09 -0700
| Lines: 28
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.3138
| X-RFC2646: Format=Flowed; Original
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3198
| Message-ID: <(E-Mail Removed)>
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| NNTP-Posting-Host: host182023.clark.wa.gov 64.4.182.23
| Path: TK2MSFTNGHUB02.phx.gbl!TK2MSFTNGP01.phx.gbl!TK2MSFTNGP06.phx.gbl
| Xref: TK2MSFTNGHUB02.phx.gbl
microsoft.public.dotnet.framework.aspnet:75359
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| hello,
| I'm using a radiobuttonlist in an updatepanel in an item template in a
| Gridview control. I'm populating the radiobuttonlist in the RowDataBound
| event. I have the control toolkit registered in the page and I've got
code
| to get the selected value from it in the
| Radiobuttonlist_SelectedIndexChanged event.
| The code in there is:
|
| Protected Sub rblFMSValue_SelectedIndexChanged(ByVal sender As Object,
ByVal
| e As System.EventArgs)
| If Not (String.IsNullOrEmpty(rblFMSValue.SelectedValue)) Then
| Dim s As String = rblFMSValue.SelectedValue
| Dim pos As Integer = s.IndexOf(": ")
| s = s.Substring(pos + 2)
| PopupControlExtender.GetProxyForCurrentPopup(Me.Page).Commit(s)
| End If
| End Sub
|
| But, when the code block get executed, the SelectedValue of the RBL is
| always an empty string so the code within the if block never executes. It
| never dismisses the popup after the user selects an item and unselects
the
| item selected (from the user's point of view). I have the Autopostback
| property set to True and the EnableViewState property set to True. What
| could the issue be?
|
| S
|
|
|

 
Reply With Quote
 
Allen Chen [MSFT]
Guest
Posts: n/a
 
      8th Sep 2008
Hi Steve,

As you said:
==================================================
I'm populating the radiobuttonlist in the RowDataBound event
==================================================
Could you tell me how do you do this? Is the RadioButtonList control
defined in the aspx or created dynamically in the RowDataBound event
handler?
In addition, where do you add the event handler? Please note if it's done
in the RowDataBound event handler the SelectedIndexChanged event handler
will not fire because RowDataBound event doesn't fire on postback (if
you're using DataSource control or bind the GridView on the first page
load, and not call GridView.DataBind() method on postback explicitly). Thus
the SelectedIndexChanged event handler is not attached to the
RadioButtonList control and will not fire at all.

If my guess above is correct you can attach the event handler in the inline
code
<asp:RadioButtonList AutoPostBack="true" ID="RadioButtonList1"
runat="server"
onselectedindexchanged="rblFMSValue_SelectedIndexChanged">

If my guess is wrong please send me a demo project that can reproduce this
problem. I'll have a look and investigate.

Regards,
Allen Chen

--------------------
| From: "SAL" <(E-Mail Removed)>
| Subject: AJAX extended radiobuttonlist unselects selected value in popup
| Date: Fri, 5 Sep 2008 12:11:09 -0700
| Lines: 28
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.3138
| X-RFC2646: Format=Flowed; Original
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3198
| Message-ID: <(E-Mail Removed)>
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| NNTP-Posting-Host: host182023.clark.wa.gov 64.4.182.23
| Path: TK2MSFTNGHUB02.phx.gbl!TK2MSFTNGP01.phx.gbl!TK2MSFTNGP06.phx.gbl
| Xref: TK2MSFTNGHUB02.phx.gbl
microsoft.public.dotnet.framework.aspnet:75359
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| hello,
| I'm using a radiobuttonlist in an updatepanel in an item template in a
| Gridview control. I'm populating the radiobuttonlist in the RowDataBound
| event. I have the control toolkit registered in the page and I've got
code
| to get the selected value from it in the
| Radiobuttonlist_SelectedIndexChanged event.
| The code in there is:
|
| Protected Sub rblFMSValue_SelectedIndexChanged(ByVal sender As Object,
ByVal
| e As System.EventArgs)
| If Not (String.IsNullOrEmpty(rblFMSValue.SelectedValue)) Then
| Dim s As String = rblFMSValue.SelectedValue
| Dim pos As Integer = s.IndexOf(": ")
| s = s.Substring(pos + 2)
| PopupControlExtender.GetProxyForCurrentPopup(Me.Page).Commit(s)
| End If
| End Sub
|
| But, when the code block get executed, the SelectedValue of the RBL is
| always an empty string so the code within the if block never executes. It
| never dismisses the popup after the user selects an item and unselects
the
| item selected (from the user's point of view). I have the Autopostback
| property set to True and the EnableViewState property set to True. What
| could the issue be?
|
| S
|
|
|

 
Reply With Quote
 
Allen Chen [MSFT]
Guest
Posts: n/a
 
      10th Sep 2008
Hi Steve,

Have you solved this problem?

Regards,
Allen Chen
Microsoft Online Community Support
--------------------
| From: "SAL" <(E-Mail Removed)>
| Subject: AJAX extended radiobuttonlist unselects selected value in popup
| Date: Fri, 5 Sep 2008 12:11:09 -0700
| Lines: 28
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.3138
| X-RFC2646: Format=Flowed; Original
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3198
| Message-ID: <(E-Mail Removed)>
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| NNTP-Posting-Host: host182023.clark.wa.gov 64.4.182.23
| Path: TK2MSFTNGHUB02.phx.gbl!TK2MSFTNGP01.phx.gbl!TK2MSFTNGP06.phx.gbl
| Xref: TK2MSFTNGHUB02.phx.gbl
microsoft.public.dotnet.framework.aspnet:75359
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| hello,
| I'm using a radiobuttonlist in an updatepanel in an item template in a
| Gridview control. I'm populating the radiobuttonlist in the RowDataBound
| event. I have the control toolkit registered in the page and I've got
code
| to get the selected value from it in the
| Radiobuttonlist_SelectedIndexChanged event.
| The code in there is:
|
| Protected Sub rblFMSValue_SelectedIndexChanged(ByVal sender As Object,
ByVal
| e As System.EventArgs)
| If Not (String.IsNullOrEmpty(rblFMSValue.SelectedValue)) Then
| Dim s As String = rblFMSValue.SelectedValue
| Dim pos As Integer = s.IndexOf(": ")
| s = s.Substring(pos + 2)
| PopupControlExtender.GetProxyForCurrentPopup(Me.Page).Commit(s)
| End If
| End Sub
|
| But, when the code block get executed, the SelectedValue of the RBL is
| always an empty string so the code within the if block never executes. It
| never dismisses the popup after the user selects an item and unselects
the
| item selected (from the user's point of view). I have the Autopostback
| property set to True and the EnableViewState property set to True. What
| could the issue be?
|
| S
|
|
|

 
Reply With Quote
 
SAL
Guest
Posts: n/a
 
      17th Sep 2008
Actually, I gave up on it since our company is still on IE6 and I can't
force an upgrade. So, until we get to IE 7, it doesn't look like I can do
much AJAX.

S

"Allen Chen [MSFT]" <v-(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Hi Steve,
>
> Have you solved this problem?
>
> Regards,
> Allen Chen
> Microsoft Online Community Support
> --------------------
> | From: "SAL" <(E-Mail Removed)>
> | Subject: AJAX extended radiobuttonlist unselects selected value in popup
> | Date: Fri, 5 Sep 2008 12:11:09 -0700
> | Lines: 28
> | X-Priority: 3
> | X-MSMail-Priority: Normal
> | X-Newsreader: Microsoft Outlook Express 6.00.2900.3138
> | X-RFC2646: Format=Flowed; Original
> | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3198
> | Message-ID: <(E-Mail Removed)>
> | Newsgroups: microsoft.public.dotnet.framework.aspnet
> | NNTP-Posting-Host: host182023.clark.wa.gov 64.4.182.23
> | Path: TK2MSFTNGHUB02.phx.gbl!TK2MSFTNGP01.phx.gbl!TK2MSFTNGP06.phx.gbl
> | Xref: TK2MSFTNGHUB02.phx.gbl
> microsoft.public.dotnet.framework.aspnet:75359
> | X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
> |
> | hello,
> | I'm using a radiobuttonlist in an updatepanel in an item template in a
> | Gridview control. I'm populating the radiobuttonlist in the RowDataBound
> | event. I have the control toolkit registered in the page and I've got
> code
> | to get the selected value from it in the
> | Radiobuttonlist_SelectedIndexChanged event.
> | The code in there is:
> |
> | Protected Sub rblFMSValue_SelectedIndexChanged(ByVal sender As Object,
> ByVal
> | e As System.EventArgs)
> | If Not (String.IsNullOrEmpty(rblFMSValue.SelectedValue)) Then
> | Dim s As String = rblFMSValue.SelectedValue
> | Dim pos As Integer = s.IndexOf(": ")
> | s = s.Substring(pos + 2)
> | PopupControlExtender.GetProxyForCurrentPopup(Me.Page).Commit(s)
> | End If
> | End Sub
> |
> | But, when the code block get executed, the SelectedValue of the RBL is
> | always an empty string so the code within the if block never executes.
> It
> | never dismisses the popup after the user selects an item and unselects
> the
> | item selected (from the user's point of view). I have the Autopostback
> | property set to True and the EnableViewState property set to True. What
> | could the issue be?
> |
> | S
> |
> |
> |
>



 
Reply With Quote
 
SAL
Guest
Posts: n/a
 
      18th Sep 2008
Hi Allen, I had the radiobuttonlist defined in the page as such along with
the event handler:
<asp:Panel ID="panFMSValue" runat="server" CssClass="popupControl">
<asp:UpdatePanel ID="upFMSValue" runat="server"
UpdateMode="Conditional">
<ContentTemplate>
<asp:RadioButtonList
ID="rblFMSValue" runat="server"
AutoPostBack="true"
OnSelectedIndexChanged="rblFMSValue_SelectedIndexChanged"
Width="144px" />
</ContentTemplate>
</asp:UpdatePanel>
</asp:Panel>
<ajax:PopupControlExtender ID="PopupControlExtender1"
runat="server"
TargetControlID="txtFMSValue"
PopupControlID="panFMSValue" CommitProperty="value"
CommitScript="e.value;" EnableViewState="False">
</ajax:PopupControlExtender>

However, I did, regrettably, forgo this approach due to the AJAX/IE6
incompatibilities.

S

"Allen Chen [MSFT]" <v-(E-Mail Removed)> wrote in message
news(E-Mail Removed)...
> Hi Steve,
>
> As you said:
> ==================================================
> I'm populating the radiobuttonlist in the RowDataBound event
> ==================================================
> Could you tell me how do you do this? Is the RadioButtonList control
> defined in the aspx or created dynamically in the RowDataBound event
> handler?
> In addition, where do you add the event handler? Please note if it's done
> in the RowDataBound event handler the SelectedIndexChanged event handler
> will not fire because RowDataBound event doesn't fire on postback (if
> you're using DataSource control or bind the GridView on the first page
> load, and not call GridView.DataBind() method on postback explicitly).
> Thus
> the SelectedIndexChanged event handler is not attached to the
> RadioButtonList control and will not fire at all.
>
> If my guess above is correct you can attach the event handler in the
> inline
> code
> <asp:RadioButtonList AutoPostBack="true" ID="RadioButtonList1"
> runat="server"
> onselectedindexchanged="rblFMSValue_SelectedIndexChanged">
>
> If my guess is wrong please send me a demo project that can reproduce this
> problem. I'll have a look and investigate.
>
> Regards,
> Allen Chen
>
> --------------------
> | From: "SAL" <(E-Mail Removed)>
> | Subject: AJAX extended radiobuttonlist unselects selected value in popup
> | Date: Fri, 5 Sep 2008 12:11:09 -0700
> | Lines: 28
> | X-Priority: 3
> | X-MSMail-Priority: Normal
> | X-Newsreader: Microsoft Outlook Express 6.00.2900.3138
> | X-RFC2646: Format=Flowed; Original
> | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3198
> | Message-ID: <(E-Mail Removed)>
> | Newsgroups: microsoft.public.dotnet.framework.aspnet
> | NNTP-Posting-Host: host182023.clark.wa.gov 64.4.182.23
> | Path: TK2MSFTNGHUB02.phx.gbl!TK2MSFTNGP01.phx.gbl!TK2MSFTNGP06.phx.gbl
> | Xref: TK2MSFTNGHUB02.phx.gbl
> microsoft.public.dotnet.framework.aspnet:75359
> | X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
> |
> | hello,
> | I'm using a radiobuttonlist in an updatepanel in an item template in a
> | Gridview control. I'm populating the radiobuttonlist in the RowDataBound
> | event. I have the control toolkit registered in the page and I've got
> code
> | to get the selected value from it in the
> | Radiobuttonlist_SelectedIndexChanged event.
> | The code in there is:
> |
> | Protected Sub rblFMSValue_SelectedIndexChanged(ByVal sender As Object,
> ByVal
> | e As System.EventArgs)
> | If Not (String.IsNullOrEmpty(rblFMSValue.SelectedValue)) Then
> | Dim s As String = rblFMSValue.SelectedValue
> | Dim pos As Integer = s.IndexOf(": ")
> | s = s.Substring(pos + 2)
> | PopupControlExtender.GetProxyForCurrentPopup(Me.Page).Commit(s)
> | End If
> | End Sub
> |
> | But, when the code block get executed, the SelectedValue of the RBL is
> | always an empty string so the code within the if block never executes.
> It
> | never dismisses the popup after the user selects an item and unselects
> the
> | item selected (from the user's point of view). I have the Autopostback
> | property set to True and the EnableViewState property set to True. What
> | could the issue be?
> |
> | S
> |
> |
> |
>



 
Reply With Quote
 
Allen Chen [MSFT]
Guest
Posts: n/a
 
      19th Sep 2008
Hi Steve,

I'm sorry to hear that. Are there any incompatibility issues you met with
other than the combobox&other elements overlay issue? The overlay issue, I
think, can be worked around by expanding the width of the column of the
<table>.

If you decide to use AJAX again please feel free to ask questions here. I'm
willing to work with you to solve any problems.

Regards,
Allen Chen
Microsoft Online Support
--------------------
| From: "SAL" <(E-Mail Removed)>
| References: <(E-Mail Removed)>
<(E-Mail Removed)>
| Subject: Re: AJAX extended radiobuttonlist unselects selected value in
popup
| Date: Thu, 18 Sep 2008 11:22:06 -0700
| Lines: 113
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.3138
| X-RFC2646: Format=Flowed; Original
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3350
| Message-ID: <#(E-Mail Removed)>
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| NNTP-Posting-Host: host183086.clark.wa.gov 64.4.183.86
| Path: TK2MSFTNGHUB02.phx.gbl!TK2MSFTNGP01.phx.gbl!TK2MSFTNGP05.phx.gbl
| Xref: TK2MSFTNGHUB02.phx.gbl
microsoft.public.dotnet.framework.aspnet:76329
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| Hi Allen, I had the radiobuttonlist defined in the page as such along
with
| the event handler:
| <asp:Panel ID="panFMSValue" runat="server" CssClass="popupControl">
| <asp:UpdatePanel ID="upFMSValue" runat="server"
| UpdateMode="Conditional">
| <ContentTemplate>
| <asp:RadioButtonList
| ID="rblFMSValue" runat="server"
| AutoPostBack="true"
|
OnSelectedIndexChanged="rblFMSValue_SelectedIndexChanged"
| Width="144px" />
| </ContentTemplate>
| </asp:UpdatePanel>
| </asp:Panel>
| <ajax:PopupControlExtender ID="PopupControlExtender1"
| runat="server"
| TargetControlID="txtFMSValue"
| PopupControlID="panFMSValue" CommitProperty="value"
| CommitScript="e.value;" EnableViewState="False">
| </ajax:PopupControlExtender>
|
| However, I did, regrettably, forgo this approach due to the AJAX/IE6
| incompatibilities.
|
| S
|
| "Allen Chen [MSFT]" <v-(E-Mail Removed)> wrote in message
| news(E-Mail Removed)...
| > Hi Steve,
| >
| > As you said:
| > ==================================================
| > I'm populating the radiobuttonlist in the RowDataBound event
| > ==================================================
| > Could you tell me how do you do this? Is the RadioButtonList control
| > defined in the aspx or created dynamically in the RowDataBound event
| > handler?
| > In addition, where do you add the event handler? Please note if it's
done
| > in the RowDataBound event handler the SelectedIndexChanged event handler
| > will not fire because RowDataBound event doesn't fire on postback (if
| > you're using DataSource control or bind the GridView on the first page
| > load, and not call GridView.DataBind() method on postback explicitly).
| > Thus
| > the SelectedIndexChanged event handler is not attached to the
| > RadioButtonList control and will not fire at all.
| >
| > If my guess above is correct you can attach the event handler in the
| > inline
| > code
| > <asp:RadioButtonList AutoPostBack="true" ID="RadioButtonList1"
| > runat="server"
| > onselectedindexchanged="rblFMSValue_SelectedIndexChanged">
| >
| > If my guess is wrong please send me a demo project that can reproduce
this
| > problem. I'll have a look and investigate.
| >
| > Regards,
| > Allen Chen
| >
| > --------------------
| > | From: "SAL" <(E-Mail Removed)>
| > | Subject: AJAX extended radiobuttonlist unselects selected value in
popup
| > | Date: Fri, 5 Sep 2008 12:11:09 -0700
| > | Lines: 28
| > | X-Priority: 3
| > | X-MSMail-Priority: Normal
| > | X-Newsreader: Microsoft Outlook Express 6.00.2900.3138
| > | X-RFC2646: Format=Flowed; Original
| > | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3198
| > | Message-ID: <(E-Mail Removed)>
| > | Newsgroups: microsoft.public.dotnet.framework.aspnet
| > | NNTP-Posting-Host: host182023.clark.wa.gov 64.4.182.23
| > | Path: TK2MSFTNGHUB02.phx.gbl!TK2MSFTNGP01.phx.gbl!TK2MSFTNGP06.phx.gbl
| > | Xref: TK2MSFTNGHUB02.phx.gbl
| > microsoft.public.dotnet.framework.aspnet:75359
| > | X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
| > |
| > | hello,
| > | I'm using a radiobuttonlist in an updatepanel in an item template in a
| > | Gridview control. I'm populating the radiobuttonlist in the
RowDataBound
| > | event. I have the control toolkit registered in the page and I've got
| > code
| > | to get the selected value from it in the
| > | Radiobuttonlist_SelectedIndexChanged event.
| > | The code in there is:
| > |
| > | Protected Sub rblFMSValue_SelectedIndexChanged(ByVal sender As Object,
| > ByVal
| > | e As System.EventArgs)
| > | If Not (String.IsNullOrEmpty(rblFMSValue.SelectedValue)) Then
| > | Dim s As String = rblFMSValue.SelectedValue
| > | Dim pos As Integer = s.IndexOf(": ")
| > | s = s.Substring(pos + 2)
| > |
PopupControlExtender.GetProxyForCurrentPopup(Me.Page).Commit(s)
| > | End If
| > | End Sub
| > |
| > | But, when the code block get executed, the SelectedValue of the RBL is
| > | always an empty string so the code within the if block never
executes.
| > It
| > | never dismisses the popup after the user selects an item and unselects
| > the
| > | item selected (from the user's point of view). I have the Autopostback
| > | property set to True and the EnableViewState property set to True.
What
| > | could the issue be?
| > |
| > | S
| > |
| > |
| > |
| >
|
|
|

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Save selected items NOT selected in an Extended List Box based onother condition big.brown Microsoft Access Form Coding 6 8th Oct 2009 06:57 PM
RadioButtonList SelectedIndexChanged not working correctly in AJAX Andrew Jocelyn Microsoft ASP .NET 4 11th Feb 2008 02:55 PM
Ajax installed.. where are Ajax controls like popup in my VS toolbox ?? jobs Microsoft ASP .NET 0 6th Nov 2006 01:23 AM
RadioButtonList and Selected =?Utf-8?B?SmF5?= Microsoft ASP .NET 1 2nd Mar 2004 06:35 AM
Get RadioButtonList's selected value in js mg Microsoft ASP .NET 2 5th Jan 2004 11:47 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 06:00 AM.