User information confirm

  • Thread starter Thread starter Andy G
  • Start date Start date
A

Andy G

I have a web form that users can change their personal information and then
it redirects them to a confirmation page. I would like the text of the
changed field(s) to be a differenct color than the ones that were not
changed. Could someone point me in the right direction with my code.

Thanks
 
Will this code do the trick for you?

TextBox1.ForeColor = System.Drawing.Color.Red;
 
I am going from one .aspx page to the next. I need to know what text
changed on the first page, pass it to the second and display the changes
text in red. The two pages are indentical, except the first page you can
edit fields and the second you can only view them. So maybe I should call a
function in every TextChanged event on the first page and somehow save all
the fields that changed, so when the first page redirects to the second
page, the second pages knows which text boxes to make red (OnLoad).



I really appreciate the help guys.
 
Yes, or maybe you should just make it all one page so it would be simpler.
Whenever you find yourself duplicating stuff from one page to the next,
that's a red flag indicating you should think about how you can reuse.

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net
 
Back
Top