i have this form that sends to db and email, and i want that if users use
backward button in browser , the form values to be reset

thanks

Re: refresh form in go back by Stefan

Stefan
Sat Feb 11 03:26:01 CST 2006

What server side language are you using

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


"Licass" <l.r.m.d@sapo.pt> wrote in message news:OKlj8cmLGHA.360@TK2MSFTNGP12.phx.gbl...
|i have this form that sends to db and email, and i want that if users use
| backward button in browser , the form values to be reset
|
| thanks
|
|



Re: refresh form in go back by Licass

Licass
Sat Feb 11 09:29:43 CST 2006

ASP
"Stefan B Rusynko" <sbr_enjoy@hotmail.com> escreveu na mensagem
news:uWOElzuLGHA.2812@TK2MSFTNGP14.phx.gbl...
> What server side language are you using
>
> --
>
> _____________________________________________
> SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
> "Warning - Using the F1 Key will not break anything!" (-;
> To find the best Newsgroup for FrontPage support see:
> http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
> _____________________________________________
>
>
> "Licass" <l.r.m.d@sapo.pt> wrote in message
news:OKlj8cmLGHA.360@TK2MSFTNGP12.phx.gbl...
> |i have this form that sends to db and email, and i want that if users use
> | backward button in browser , the form values to be reset
> |
> | thanks
> |
> |
>
>



Re: refresh form in go back by Stefan

Stefan
Sat Feb 11 09:36:41 CST 2006

Try adding at top of page

Response.AddHeader "Cache-Control", "No-cache"
Response.AddHeader "Pragma", "No-cache"
Response.CacheControl = "No-cache"
Response.Expires = -1
Response.ExpiresAbsolute=#Jan 31, 2006 12:00:00#
--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


"Licass" <l.r.m.d@sapo.pt> wrote in message news:OaJUR%23xLGHA.720@TK2MSFTNGP14.phx.gbl...
| ASP
| "Stefan B Rusynko" <sbr_enjoy@hotmail.com> escreveu na mensagem
| news:uWOElzuLGHA.2812@TK2MSFTNGP14.phx.gbl...
| > What server side language are you using
| >
| > --
| >
| > _____________________________________________
| > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
| > "Warning - Using the F1 Key will not break anything!" (-;
| > To find the best Newsgroup for FrontPage support see:
| > http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
| > _____________________________________________
| >
| >
| > "Licass" <l.r.m.d@sapo.pt> wrote in message
| news:OKlj8cmLGHA.360@TK2MSFTNGP12.phx.gbl...
| > |i have this form that sends to db and email, and i want that if users use
| > | backward button in browser , the form values to be reset
| > |
| > | thanks
| > |
| > |
| >
| >
|
|



Re: refresh form in go back by Licass

Licass
Sat Feb 11 09:53:14 CST 2006

thanks , wonderfull.

"Stefan B Rusynko" <sbr_enjoy@hotmail.com> escreveu na mensagem
news:elbb4DyLGHA.2124@TK2MSFTNGP14.phx.gbl...
> Try adding at top of page
>
> Response.AddHeader "Cache-Control", "No-cache"
> Response.AddHeader "Pragma", "No-cache"
> Response.CacheControl = "No-cache"
> Response.Expires = -1
> Response.ExpiresAbsolute=#Jan 31, 2006 12:00:00#
> --
>
> _____________________________________________
> SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
> "Warning - Using the F1 Key will not break anything!" (-;
> To find the best Newsgroup for FrontPage support see:
> http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
> _____________________________________________
>
>
> "Licass" <l.r.m.d@sapo.pt> wrote in message
news:OaJUR%23xLGHA.720@TK2MSFTNGP14.phx.gbl...
> | ASP
> | "Stefan B Rusynko" <sbr_enjoy@hotmail.com> escreveu na mensagem
> | news:uWOElzuLGHA.2812@TK2MSFTNGP14.phx.gbl...
> | > What server side language are you using
> | >
> | > --
> | >
> | > _____________________________________________
> | > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
> | > "Warning - Using the F1 Key will not break anything!" (-;
> | > To find the best Newsgroup for FrontPage support see:
> | >
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
> | > _____________________________________________
> | >
> | >
> | > "Licass" <l.r.m.d@sapo.pt> wrote in message
> | news:OKlj8cmLGHA.360@TK2MSFTNGP12.phx.gbl...
> | > |i have this form that sends to db and email, and i want that if users
use
> | > | backward button in browser , the form values to be reset
> | > |
> | > | thanks
> | > |
> | > |
> | >
> | >
> |
> |
>
>



Re: refresh form in go back by Stefan

Stefan
Sun Feb 12 03:40:47 CST 2006

Your attachment (.asp) is blocked by OE
- w/o seeing it hard to say

Normal approach is to set a variable (say a session variable) after 1st write and prevent further writes if it is present

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


"Licass" <l.r.m.d@sapo.pt> wrote in message news:uWeT32yLGHA.668@TK2MSFTNGP11.phx.gbl...
| theres a problem. the page that stores the data in db and send the email can
| be refreshed and send over and over again the data to db and email. how to
| manage this?
|
| "Stefan B Rusynko" <sbr_enjoy@hotmail.com> escreveu na mensagem
| news:elbb4DyLGHA.2124@TK2MSFTNGP14.phx.gbl...
| > Try adding at top of page
| >
| > Response.AddHeader "Cache-Control", "No-cache"
| > Response.AddHeader "Pragma", "No-cache"
| > Response.CacheControl = "No-cache"
| > Response.Expires = -1
| > Response.ExpiresAbsolute=#Jan 31, 2006 12:00:00#
| > --
| >
| > _____________________________________________
| > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
| > "Warning - Using the F1 Key will not break anything!" (-;
| > To find the best Newsgroup for FrontPage support see:
| > http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
| > _____________________________________________
| >
| >
| > "Licass" <l.r.m.d@sapo.pt> wrote in message
| news:OaJUR%23xLGHA.720@TK2MSFTNGP14.phx.gbl...
| > | ASP
| > | "Stefan B Rusynko" <sbr_enjoy@hotmail.com> escreveu na mensagem
| > | news:uWOElzuLGHA.2812@TK2MSFTNGP14.phx.gbl...
| > | > What server side language are you using
| > | >
| > | > --
| > | >
| > | > _____________________________________________
| > | > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
| > | > "Warning - Using the F1 Key will not break anything!" (-;
| > | > To find the best Newsgroup for FrontPage support see:
| > | >
| http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
| > | > _____________________________________________
| > | >
| > | >
| > | > "Licass" <l.r.m.d@sapo.pt> wrote in message
| > | news:OKlj8cmLGHA.360@TK2MSFTNGP12.phx.gbl...
| > | > |i have this form that sends to db and email, and i want that if users
| use
| > | > | backward button in browser , the form values to be reset
| > | > |
| > | > | thanks
| > | > |
| > | > |
| > | >
| > | >
| > |
| > |
| >
| >
|
|
|



Re: refresh form in go back by Licass

Licass
Sun Feb 12 05:39:43 CST 2006

can u help me with the code?
"Stefan B Rusynko" <sbr_enjoy@hotmail.com> escreveu na mensagem
news:%23E3uxi7LGHA.1424@TK2MSFTNGP12.phx.gbl...
> Your attachment (.asp) is blocked by OE
> - w/o seeing it hard to say
>
> Normal approach is to set a variable (say a session variable) after 1st
write and prevent further writes if it is present
>
> --
>
> _____________________________________________
> SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
> "Warning - Using the F1 Key will not break anything!" (-;
> To find the best Newsgroup for FrontPage support see:
> http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
> _____________________________________________
>
>
> "Licass" <l.r.m.d@sapo.pt> wrote in message
news:uWeT32yLGHA.668@TK2MSFTNGP11.phx.gbl...
> | theres a problem. the page that stores the data in db and send the email
can
> | be refreshed and send over and over again the data to db and email. how
to
> | manage this?
> |
> | "Stefan B Rusynko" <sbr_enjoy@hotmail.com> escreveu na mensagem
> | news:elbb4DyLGHA.2124@TK2MSFTNGP14.phx.gbl...
> | > Try adding at top of page
> | >
> | > Response.AddHeader "Cache-Control", "No-cache"
> | > Response.AddHeader "Pragma", "No-cache"
> | > Response.CacheControl = "No-cache"
> | > Response.Expires = -1
> | > Response.ExpiresAbsolute=#Jan 31, 2006 12:00:00#
> | > --
> | >
> | > _____________________________________________
> | > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
> | > "Warning - Using the F1 Key will not break anything!" (-;
> | > To find the best Newsgroup for FrontPage support see:
> | >
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
> | > _____________________________________________
> | >
> | >
> | > "Licass" <l.r.m.d@sapo.pt> wrote in message
> | news:OaJUR%23xLGHA.720@TK2MSFTNGP14.phx.gbl...
> | > | ASP
> | > | "Stefan B Rusynko" <sbr_enjoy@hotmail.com> escreveu na mensagem
> | > | news:uWOElzuLGHA.2812@TK2MSFTNGP14.phx.gbl...
> | > | > What server side language are you using
> | > | >
> | > | > --
> | > | >
> | > | > _____________________________________________
> | > | > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
> | > | > "Warning - Using the F1 Key will not break anything!" (-;
> | > | > To find the best Newsgroup for FrontPage support see:
> | > | >
> | http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
> | > | > _____________________________________________
> | > | >
> | > | >
> | > | > "Licass" <l.r.m.d@sapo.pt> wrote in message
> | > | news:OKlj8cmLGHA.360@TK2MSFTNGP12.phx.gbl...
> | > | > |i have this form that sends to db and email, and i want that if
users
> | use
> | > | > | backward button in browser , the form values to be reset
> | > | > |
> | > | > | thanks
> | > | > |
> | > | > |
> | > | >
> | > | >
> | > |
> | > |
> | >
> | >
> |
> |
> |
>
>