freelanceprogrammers.org Forum Index » ASP

Re: Button Event Not Firing


View user's profile Post To page top
rajendra937 Posted: Fri Jan 07, 2005 4:27 am


Joined: 06 Jan 2005

Posts: 6
Re: Button Event Not Firing
May be the button isn`t wired to the event. In the design mode double
click your button and then run the application and try and see if it
works.

Rajendra.

_____

From: Nick [mailto:nicholaschanburnlake@...]
Sent: Thursday, January 06, 2005 5:25 PM
To: AspNetAnyQuestionIsOk@yahoogroups.com
Subject: [AspNetAnyQuestionIsOk] Re: Button Event Not Firing


Thanks Mark.

Private Sub btnSubmit_Click(ByVal sender As Object, ByVal e As
System.EventArgs) Handles btnSubmit.Click
CollectData()
End Sub

--- In AspNetAnyQuestionIsOk@yahoogroups.com, Mark E
<meckeard2000@y...> wrote:
> Nick,
>
> Post your code so we can see it.
>
> Mark
>
> Nick <nicholaschanburnlake@y...> wrote:
>
> Hi All,
>
> I have a registration page with a command button at the bottom.
For
> some reason, after clicking the button, data isnt posting to the
> server. When I attempt to debug the app, I cant even access the
code
> within the event. Any ideas ?
>
> Nick
>
> ps: I`ve tried adding another button and the same occurs.
> pps: I`m able to step thru the code for other events ... what
gives ?
>
>
>
>
>
> ---------------------------------
> Yahoo! Groups Links
>
> To visit your group on the web, go to:
> http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/
>
> To unsubscribe from this group, send an email to:
> AspNetAnyQuestionIsOk-unsubscribe@yahoogroups.com
>
> Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service.
>
>
>
> [Non-text portions of this message have been removed]





_____

Yahoo! Groups Links
* To visit your group on the web, go to:
http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/

* To unsubscribe from this group, send an email to:
AspNetAnyQuestionIsOk-unsubscribe@yahoogroups.com
<mailto:AspNetAnyQuestionIsOk-unsubscribe@yahoogroups.com?subject=Unsubs
cribe>

* Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service <http://docs.yahoo.com/info/terms/> .


[Non-text portions of this message have been removed]
Reply with quote
Send private message
View user's profile Post To page top
nicholaschan... Posted: Fri Jan 07, 2005 4:30 am


Joined: 07 Jan 2005

Posts: 10
Re: Button Event Not Firing
Nope, same thing unfortunately ...... 8-(

--- In AspNetAnyQuestionIsOk@yahoogroups.com, "Rajendra Appalla"
<rajendra@i...> wrote:
> May be the button isn`t wired to the event. In the design mode
double
> click your button and then run the application and try and see if
it
> works.
>
> Rajendra.
>
> _____
>
> From: Nick [mailto:nicholaschanburnlake@y...]
> Sent: Thursday, January 06, 2005 5:25 PM
> To: AspNetAnyQuestionIsOk@yahoogroups.com
> Subject: [AspNetAnyQuestionIsOk] Re: Button Event Not Firing
>
>
> Thanks Mark.
>
> Private Sub btnSubmit_Click(ByVal sender As Object, ByVal e As
> System.EventArgs) Handles btnSubmit.Click
> CollectData()
> End Sub
>
> --- In AspNetAnyQuestionIsOk@yahoogroups.com, Mark E
> <meckeard2000@y...> wrote:
> > Nick,
> >
> > Post your code so we can see it.
> >
> > Mark
> >
> > Nick <nicholaschanburnlake@y...> wrote:
> >
> > Hi All,
> >
> > I have a registration page with a command button at the bottom.
> For
> > some reason, after clicking the button, data isnt posting to the
> > server. When I attempt to debug the app, I cant even access the
> code
> > within the event. Any ideas ?
> >
> > Nick
> >
> > ps: I`ve tried adding another button and the same occurs.
> > pps: I`m able to step thru the code for other events ... what
> gives ?
> >
> >
> >
> >
> >
> > ---------------------------------
> > Yahoo! Groups Links
> >
> > To visit your group on the web, go to:
> > http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/
> >
> > To unsubscribe from this group, send an email to:
> > AspNetAnyQuestionIsOk-unsubscribe@yahoogroups.com
> >
> > Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> Service.
> >
> >
> >
> > [Non-text portions of this message have been removed]
>
>
>
>
>
> _____
>
> Yahoo! Groups Links
> * To visit your group on the web, go to:
> http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/
>
> * To unsubscribe from this group, send an email to:
> AspNetAnyQuestionIsOk-unsubscribe@yahoogroups.com
> <mailto:AspNetAnyQuestionIsOk-unsubscribe@yahoogroups.com?
subject=Unsubs
> cribe>
>
> * Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> Service <http://docs.yahoo.com/info/terms/> .
>
>
> [Non-text portions of this message have been removed]
Reply with quote
Send private message
View user's profile Post To page top
rajendra937 Posted: Fri Jan 07, 2005 5:15 am


Joined: 06 Jan 2005

Posts: 6
Re: Button Event Not Firing
May be the button isn`t wired to the event. In the design mode double
click your button and then run the application and try and see if it
works.

Rajendra.


_____

From: Nick [mailto:nicholaschanburnlake@...]
Sent: Thursday, January 06, 2005 6:13 PM
To: AspNetAnyQuestionIsOk@yahoogroups.com
Subject: [AspNetAnyQuestionIsOk] Re: Button Event Not Firing


Thanks for your suggestion Pradeep.
Unfortunately, it hasnt changed anything ......


--- In AspNetAnyQuestionIsOk@yahoogroups.com, pradeep yanamandra
<pradeep_yanamandra@y...> wrote:
> Nick,
> enable view state for the button explicitly or turn off smart
navigation in the page directive to false.
>
> Hope this helps
>
>
> Mark E <meckeard2000@y...> wrote:
> Nick,
>
> Post all your code. HTML (button) and CollectData().
>
> Mark
>
> Nick <nicholaschanburnlake@y...> wrote:
>
> Thanks Mark.
>
> Private Sub btnSubmit_Click(ByVal sender As Object, ByVal e As
> System.EventArgs) Handles btnSubmit.Click
> CollectData()
> End Sub
>
> --- In AspNetAnyQuestionIsOk@yahoogroups.com, Mark E
> <meckeard2000@y...> wrote:
> > Nick,
> >
> > Post your code so we can see it.
> >
> > Mark
> >
> > Nick <nicholaschanburnlake@y...> wrote:
> >
> > Hi All,
> >
> > I have a registration page with a command button at the bottom.
> For
> > some reason, after clicking the button, data isnt posting to the
> > server. When I attempt to debug the app, I cant even access the
> code
> > within the event. Any ideas ?
> >
> > Nick
> >
> > ps: I`ve tried adding another button and the same occurs.
> > pps: I`m able to step thru the code for other events ... what
> gives ?
> >
> >
> >
> >
> >
> > ---------------------------------
> > Yahoo! Groups Links
> >
> > To visit your group on the web, go to:
> > http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/
> >
> > To unsubscribe from this group, send an email to:
> > AspNetAnyQuestionIsOk-unsubscribe@yahoogroups.com
> >
> > Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> Service.
> >
> >
> >
> > [Non-text portions of this message have been removed]
>
>
>
>
>
> ---------------------------------
> Yahoo! Groups Links
>
> To visit your group on the web, go to:
> http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/
>
> To unsubscribe from this group, send an email to:
> AspNetAnyQuestionIsOk-unsubscribe@yahoogroups.com
>
> Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service.
>
>
>
> [Non-text portions of this message have been removed]
>
>
> Yahoo! Groups SponsorADVERTISEMENT
>
>
> ---------------------------------
> Yahoo! Groups Links
>
> To visit your group on the web, go to:
> http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/
>
> To unsubscribe from this group, send an email to:
> AspNetAnyQuestionIsOk-unsubscribe@yahoogroups.com
>
> Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service.
>
>
>
> ---------------------------------
> Do you Yahoo!?
> All your favorites on one personal page - Try My Yahoo!
>
> [Non-text portions of this message have been removed]





_____

Yahoo! Groups Links
* To visit your group on the web, go to:
http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/

* To unsubscribe from this group, send an email to:
AspNetAnyQuestionIsOk-unsubscribe@yahoogroups.com
<mailto:AspNetAnyQuestionIsOk-unsubscribe@yahoogroups.com?subject=Unsubs
cribe>

* Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service <http://docs.yahoo.com/info/terms/> .


[Non-text portions of this message have been removed]
Reply with quote
Send private message
View user's profile Post To page top
kindawords Posted: Fri Jan 07, 2005 5:20 am


Joined: 11 Jan 2006

Posts: 46
Re: Button Event Not Firing
You should also page your Page_Load event, that ALWAYS gets called
before any control events. It is likely that something in your
Page_load is interfering with your intended execution.


On Thu, 6 Jan 2005 18:15:00 -0500, Rajendra Appalla
<rajendra@...> wrote:
>
> May be the button isn`t wired to the event. In the design mode double
> click your button and then run the application and try and see if it
> works.
>
> Rajendra.
>
> _____
>
> From: Nick [mailto:nicholaschanburnlake@...]
> Sent: Thursday, January 06, 2005 6:13 PM
> To: AspNetAnyQuestionIsOk@yahoogroups.com
> Subject: [AspNetAnyQuestionIsOk] Re: Button Event Not Firing
>
> Thanks for your suggestion Pradeep.
> Unfortunately, it hasnt changed anything ......
>
> --- In AspNetAnyQuestionIsOk@yahoogroups.com, pradeep yanamandra
> <pradeep_yanamandra@y...> wrote:
> > Nick,
> > enable view state for the button explicitly or turn off smart
> navigation in the page directive to false.
> >
> > Hope this helps
> >
> >
> > Mark E <meckeard2000@y...> wrote:
> > Nick,
> >
> > Post all your code. HTML (button) and CollectData().
> >
> > Mark
> >
> > Nick <nicholaschanburnlake@y...> wrote:
> >
> > Thanks Mark.
> >
> > Private Sub btnSubmit_Click(ByVal sender As Object, ByVal e As
> > System.EventArgs) Handles btnSubmit.Click
> > CollectData()
> > End Sub
> >
> > --- In AspNetAnyQuestionIsOk@yahoogroups.com, Mark E
> > <meckeard2000@y...> wrote:
> > > Nick,
> > >
> > > Post your code so we can see it.
> > >
> > > Mark
> > >
> > > Nick <nicholaschanburnlake@y...> wrote:
> > >
> > > Hi All,
> > >
> > > I have a registration page with a command button at the bottom.
> > For
> > > some reason, after clicking the button, data isnt posting to the
> > > server. When I attempt to debug the app, I cant even access the
> > code
> > > within the event. Any ideas ?
> > >
> > > Nick
> > >
> > > ps: I`ve tried adding another button and the same occurs.
> > > pps: I`m able to step thru the code for other events ... what
> > gives ?
> > >
> > >
> > >
> > >
> > >
> > > ---------------------------------
> > > Yahoo! Groups Links
> > >
> > > To visit your group on the web, go to:
> > > http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/
> > >
> > > To unsubscribe from this group, send an email to:
> > > AspNetAnyQuestionIsOk-unsubscribe@yahoogroups.com
> > >
> > > Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> > Service.
> > >
> > >
> > >
> > > [Non-text portions of this message have been removed]
> >
> >
> >
> >
> >
> > ---------------------------------
> > Yahoo! Groups Links
> >
> > To visit your group on the web, go to:
> > http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/
> >
> > To unsubscribe from this group, send an email to:
> > AspNetAnyQuestionIsOk-unsubscribe@yahoogroups.com
> >
> > Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> Service.
> >
> >
> >
> > [Non-text portions of this message have been removed]
> >
> >
> > Yahoo! Groups SponsorADVERTISEMENT
> >
> >
> > ---------------------------------
> > Yahoo! Groups Links
> >
> > To visit your group on the web, go to:
> > http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/
> >
> > To unsubscribe from this group, send an email to:
> > AspNetAnyQuestionIsOk-unsubscribe@yahoogroups.com
> >
> > Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> Service.
> >
> >
> >
> > ---------------------------------
> > Do you Yahoo!?
> > All your favorites on one personal page - Try My Yahoo!
> >
> > [Non-text portions of this message have been removed]
>
> _____
>
> Yahoo! Groups Links
> * To visit your group on the web, go to:
> http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/
>
> * To unsubscribe from this group, send an email to:
> AspNetAnyQuestionIsOk-unsubscribe@yahoogroups.com
> <mailto:AspNetAnyQuestionIsOk-unsubscribe@yahoogroups.com?subject=Unsubs
> cribe>
>
> * Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> Service <http://docs.yahoo.com/info/terms/> .
>
>
> [Non-text portions of this message have been removed]
>
> Yahoo! Groups Links
>
>
>
>
>


--
Dean Fiala
Very Practical Software, Inc
http://www.vpsw.com
Reply with quote
Send private message
View user's profile Post To page top
meckeard2000 Posted: Fri Jan 07, 2005 5:25 am


Joined: 26 Dec 2004

Posts: 12
Re: Button Event Not Firing
If I create a new page and paste in your code, it works fine.

I did have to remove all the code from the sub CollectData. So If there isn`t
something affecting the postback like Dean suggested, I would comment out your
Try statement to see it`s trapping an error but not producing the error message
to your label.

Mark

Dean Fiala <dfiala@...> wrote:
You should also page your Page_Load event, that ALWAYS gets called
before any control events. It is likely that something in your
Page_load is interfering with your intended execution.


On Thu, 6 Jan 2005 18:15:00 -0500, Rajendra Appalla
<rajendra@...> wrote:
>
> May be the button isn`t wired to the event. In the design mode double
> click your button and then run the application and try and see if it
> works.
>
> Rajendra.
>
> _____
>
> From: Nick [mailto:nicholaschanburnlake@...]
> Sent: Thursday, January 06, 2005 6:13 PM
> To: AspNetAnyQuestionIsOk@yahoogroups.com
> Subject: [AspNetAnyQuestionIsOk] Re: Button Event Not Firing
>
> Thanks for your suggestion Pradeep.
> Unfortunately, it hasnt changed anything ......
>
> --- In AspNetAnyQuestionIsOk@yahoogroups.com, pradeep yanamandra
> <pradeep_yanamandra@y...> wrote:
> > Nick,
> > enable view state for the button explicitly or turn off smart
> navigation in the page directive to false.
> >
> > Hope this helps
> >
> >
> > Mark E <meckeard2000@y...> wrote:
> > Nick,
> >
> > Post all your code. HTML (button) and CollectData().
> >
> > Mark
> >
> > Nick <nicholaschanburnlake@y...> wrote:
> >
> > Thanks Mark.
> >
> > Private Sub btnSubmit_Click(ByVal sender As Object, ByVal e As
> > System.EventArgs) Handles btnSubmit.Click
> > CollectData()
> > End Sub
> >
> > --- In AspNetAnyQuestionIsOk@yahoogroups.com, Mark E
> > <meckeard2000@y...> wrote:
> > > Nick,
> > >
> > > Post your code so we can see it.
> > >
> > > Mark
> > >
> > > Nick <nicholaschanburnlake@y...> wrote:
> > >
> > > Hi All,
> > >
> > > I have a registration page with a command button at the bottom.
> > For
> > > some reason, after clicking the button, data isnt posting to the
> > > server. When I attempt to debug the app, I cant even access the
> > code
> > > within the event. Any ideas ?
> > >
> > > Nick
> > >
> > > ps: I`ve tried adding another button and the same occurs.
> > > pps: I`m able to step thru the code for other events ... what
> > gives ?
> > >
> > >
> > >
> > >
> > >
> > > ---------------------------------
> > > Yahoo! Groups Links
> > >
> > > To visit your group on the web, go to:
> > > http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/
> > >
> > > To unsubscribe from this group, send an email to:
> > > AspNetAnyQuestionIsOk-unsubscribe@yahoogroups.com
> > >
> > > Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> > Service.
> > >
> > >
> > >
> > > [Non-text portions of this message have been removed]
> >
> >
> >
> >
> >
> > ---------------------------------
> > Yahoo! Groups Links
> >
> > To visit your group on the web, go to:
> > http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/
> >
> > To unsubscribe from this group, send an email to:
> > AspNetAnyQuestionIsOk-unsubscribe@yahoogroups.com
> >
> > Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> Service.
> >
> >
> >
> > [Non-text portions of this message have been removed]
> >
> >
> > Yahoo! Groups SponsorADVERTISEMENT
> >
> >
> > ---------------------------------
> > Yahoo! Groups Links
> >
> > To visit your group on the web, go to:
> > http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/
> >
> > To unsubscribe from this group, send an email to:
> > AspNetAnyQuestionIsOk-unsubscribe@yahoogroups.com
> >
> > Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> Service.
> >
> >
> >
> > ---------------------------------
> > Do you Yahoo!?
> > All your favorites on one personal page - Try My Yahoo!
> >
> > [Non-text portions of this message have been removed]
>
> _____
>
> Yahoo! Groups Links
> * To visit your group on the web, go to:
> http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/
>
> * To unsubscribe from this group, send an email to:
> AspNetAnyQuestionIsOk-unsubscribe@yahoogroups.com
> <mailto:AspNetAnyQuestionIsOk-unsubscribe@yahoogroups.com?subject=Unsubs
> cribe>
>
> * Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> Service <http://docs.yahoo.com/info/terms/> .
>
>
> [Non-text portions of this message have been removed]
>
> Yahoo! Groups Links
>
>
>
>
>


--
Dean Fiala
Very Practical Software, Inc
http://www.vpsw.com


---------------------------------
Yahoo! Groups Links

To visit your group on the web, go to:
http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/

To unsubscribe from this group, send an email to:
AspNetAnyQuestionIsOk-unsubscribe@yahoogroups.com

Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



[Non-text portions of this message have been removed]
Reply with quote
Send private message
View user's profile Post To page top
nicholaschan... Posted: Fri Jan 07, 2005 5:36 am


Joined: 07 Jan 2005

Posts: 10
Re: Button Event Not Firing
Thanks for all your help everyone, I really appreciate it.
Anyways, I noticed an error within my stored procedure. After
correcting that, I had to set "Causes Validation" within my button
to false. Now, when I run the page it works fine.

However, if I set "Causes Validation" to true, it`s back to square
one.

Nick


--- In AspNetAnyQuestionIsOk@yahoogroups.com, Mark E
<meckeard2000@y...> wrote:
> If I create a new page and paste in your code, it works fine.
>
> I did have to remove all the code from the sub CollectData. So If
there isn`t something affecting the postback like Dean suggested, I
would comment out your Try statement to see it`s trapping an error
but not producing the error message to your label.
>
> Mark
>
> Dean Fiala <dfiala@g...> wrote:
> You should also page your Page_Load event, that ALWAYS gets called
> before any control events. It is likely that something in your
> Page_load is interfering with your intended execution.
>
>
> On Thu, 6 Jan 2005 18:15:00 -0500, Rajendra Appalla
> <rajendra@i...> wrote:
> >
> > May be the button isn`t wired to the event. In the design mode
double
> > click your button and then run the application and try and see
if it
> > works.
> >
> > Rajendra.
> >
> > _____
> >
> > From: Nick [mailto:nicholaschanburnlake@y...]
> > Sent: Thursday, January 06, 2005 6:13 PM
> > To: AspNetAnyQuestionIsOk@yahoogroups.com
> > Subject: [AspNetAnyQuestionIsOk] Re: Button Event Not Firing
> >
> > Thanks for your suggestion Pradeep.
> > Unfortunately, it hasnt changed anything ......
> >
> > --- In AspNetAnyQuestionIsOk@yahoogroups.com, pradeep yanamandra
> > <pradeep_yanamandra@y...> wrote:
> > > Nick,
> > > enable view state for the button explicitly or turn off smart
> > navigation in the page directive to false.
> > >
> > > Hope this helps
> > >
> > >
> > > Mark E <meckeard2000@y...> wrote:
> > > Nick,
> > >
> > > Post all your code. HTML (button) and CollectData().
> > >
> > > Mark
> > >
> > > Nick <nicholaschanburnlake@y...> wrote:
> > >
> > > Thanks Mark.
> > >
> > > Private Sub btnSubmit_Click(ByVal sender As Object, ByVal e As
> > > System.EventArgs) Handles btnSubmit.Click
> > > CollectData()
> > > End Sub
> > >
> > > --- In AspNetAnyQuestionIsOk@yahoogroups.com, Mark E
> > > <meckeard2000@y...> wrote:
> > > > Nick,
> > > >
> > > > Post your code so we can see it.
> > > >
> > > > Mark
> > > >
> > > > Nick <nicholaschanburnlake@y...> wrote:
> > > >
> > > > Hi All,
> > > >
> > > > I have a registration page with a command button at the
bottom.
> > > For
> > > > some reason, after clicking the button, data isnt posting to
the
> > > > server. When I attempt to debug the app, I cant even access
the
> > > code
> > > > within the event. Any ideas ?
> > > >
> > > > Nick
> > > >
> > > > ps: I`ve tried adding another button and the same occurs.
> > > > pps: I`m able to step thru the code for other events ... what
> > > gives ?
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > ---------------------------------
> > > > Yahoo! Groups Links
> > > >
> > > > To visit your group on the web, go to:
> > > > http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/
> > > >
> > > > To unsubscribe from this group, send an email to:
> > > > AspNetAnyQuestionIsOk-unsubscribe@yahoogroups.com
> > > >
> > > > Your use of Yahoo! Groups is subject to the Yahoo! Terms
of
> > > Service.
> > > >
> > > >
> > > >
> > > > [Non-text portions of this message have been removed]
> > >
> > >
> > >
> > >
> > >
> > > ---------------------------------
> > > Yahoo! Groups Links
> > >
> > > To visit your group on the web, go to:
> > > http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/
> > >
> > > To unsubscribe from this group, send an email to:
> > > AspNetAnyQuestionIsOk-unsubscribe@yahoogroups.com
> > >
> > > Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> > Service.
> > >
> > >
> > >
> > > [Non-text portions of this message have been removed]
> > >
> > >
> > > Yahoo! Groups SponsorADVERTISEMENT
> > >
> > >
> > > ---------------------------------
> > > Yahoo! Groups Links
> > >
> > > To visit your group on the web, go to:
> > > http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/
> > >
> > > To unsubscribe from this group, send an email to:
> > > AspNetAnyQuestionIsOk-unsubscribe@yahoogroups.com
> > >
> > > Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> > Service.
> > >
> > >
> > >
> > > ---------------------------------
> > > Do you Yahoo!?
> > > All your favorites on one personal page - Try My Yahoo!
> > >
> > > [Non-text portions of this message have been removed]
> >
> > _____
> >
> > Yahoo! Groups Links
> > * To visit your group on the web, go to:
> > http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/
> >
> > * To unsubscribe from this group, send an email to:
> > AspNetAnyQuestionIsOk-unsubscribe@yahoogroups.com
> > <mailto:AspNetAnyQuestionIsOk-unsubscribe@yahoogroups.com?
subject=Unsubs
> > cribe>
> >
> > * Your use of Yahoo! Groups is subject to the Yahoo! Terms
of
> > Service <http://docs.yahoo.com/info/terms/> .
> >
> >
> > [Non-text portions of this message have been removed]
> >
> > Yahoo! Groups Links
> >
> >
> >
> >
> >
>
>
> --
> Dean Fiala
> Very Practical Software, Inc
> http://www.vpsw.com
>
>
> ---------------------------------
> Yahoo! Groups Links
>
> To visit your group on the web, go to:
> http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/
>
> To unsubscribe from this group, send an email to:
> AspNetAnyQuestionIsOk-unsubscribe@yahoogroups.com
>
> Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service.
>
>
>
> [Non-text portions of this message have been removed]
Reply with quote
Send private message
Post new topic Reply to topic
Display posts from previous:   
 

All times are GMT
Page 1 of 1
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Freelace Website Designer - Customer web design and software building.
China Wholesale - Electronics Products
Character Studio - Tutorials and Help