Can someone please help me?
I am attempting to store the contents of a Request.Form variable (in this case, a country name) in a cookie. Unfortunately, the contents of the variable are not consistent from one POST to the next.
The first time I choose a country with more than one word (such as "United States" or "United Kingdom"), the form post works exactly as expected.
However, if I simply submit the form again without changing anything, the value truncates at the first occurrence of a space. The Request.Form("country") result is always a single word on this second use of the same value.
What makes this very difficult to troubleshoot is that if I manually choose the exact same value again (from a SELECT/OPTION list), the form posts the proper value.
Why is the form dropping the additional "words" in the variable value when simply submitting?
Anyone??