Encryption of URL in MVC 4
问题 I am working of encrypting the parameters in MVC url..such as http:/localhost:xxxx/Movies/Edit/1 , encrypting the parameter value 1,assigned to id. Basically What i followed is implementing the custom Action link which will encrypt the RoutedValueDictionary values based on salt string and prefix the encrpyted value with same text say Encrypt_ so output would be Encrypt_dfhwo=23nbsdkfhskdf . so url would be http:/localhost:xxxx/Movies/Edit/Encrypt_dfhwo=23nbsdkfhskdf Implemented