Posts by Renato Alisson • 1 point
2 posts
-
0
votes1
answer311
viewsQ: MD5 Asp.net MVC encryption
I have to do an encryption in a web application. I am using the following method to encrypt the password. // Criptografa a senha public string GerarMD5(string Senha) { // criptografia MD5 MD5…
-
0
votes1
answer36
viewsQ: Remove space in the name of an input
It’s like, I’m doing a foreach this way . int count = 1; @foreach (var item in Model) { <input name="itemId_@count" value="@item.ProdutoId" type="hidden"> count++; } The problem is that in…