Request: What property will be unique with every post?

  • Thread starter Thread starter Nathan Sokalski
  • Start date Start date
N

Nathan Sokalski

I am looking for a property of the System.Web.HttpRequest class that will
always be different. Is there a property that uniquely identifies each
Request (at least within the specific Session)? Thanks.
 
No, there is not such a property. But you can combine several
properties to identify a request (e.g. UserHost, Time, ContentSize )
 
you can also add hidden submit items with GUID's as the value to force
a unique value in the Request.
 
Back
Top