Changes between Version 14 and Version 15 of WikiStart
- Timestamp:
- 01/27/14 12:39:17 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiStart
v14 v15 1 1 = Clavis: Secure, Type-safe URLs for ASP.NET = 2 2 3 Clavis is a simple class library for use with ASP.NET. It provides primitives for secure parameter passing between pages, with compiler-verified taint-checking for any insecure parameters. For an overview of the rationale or the operational details behind Clavis, see [http://higherlogics.blogspot.ca/search/label/Clavis the Clavis blog posts]. For full documentation, see the [http://higherlogics.com/clavis/docs-v1.0/ online API docs].3 Clavis is a simple class library for use with ASP.NET. It provides primitives for secure parameter passing between pages, with compiler-verified taint-checking for any insecure parameters. 4 4 5 5 You need only understand a few concepts to use Clavis: … … 174 174 175 175 You don't need to perform validation exactly as above of course, you just need to place a call to {{{Continuation.Validate()}}} somewhere in the page lifecycle. On init or pre-init is preferable so you don't waste time parsing parameters that won't validate anyway. 176 177 = References = 178 179 * An overview of the rationale or the operational details behind Clavis is available in [http://higherlogics.blogspot.ca/search/label/Clavis the Clavis blog posts]. 180 * [http://higherlogics.com/clavis/docs-v1.0/ Full API documentation is available online], or as [http://higherlogics.com/clavis/clavis-doc.chm a downloadable .CHM file] 181 * The latest Clavis version can be downloaded [http://higherlogics.com/clavis/ here]