Click here to Skip to main content
15,892,768 members

Comments by Member 8583441 (Top 159 by date)

Member 8583441 25-Jan-19 1:48am View    
Now i got your point sir thanks for suggesting the perfect solution
Member 8583441 25-Jan-19 1:32am View    
I have tried using ternary operator and the problem has resolved.
ObjUser.IsSuperUser = (dr["UserName"].ToString() == uname.ToLower() && Convert.ToBoolean(dr["IsSuperUser"]) == true) ? true : false;
Member 8583441 25-Jan-19 1:31am View    
can i have the namespace for MathNet sir
Member 8583441 11-Jan-19 5:54am View    
problem is solved... the error occurred at stored procedure parameter initialization in data access layer in c# asp.net. When i changed that parameter the error occurred. Thanks a lot sir for giving me the way to store the password.
Member 8583441 11-Jan-19 5:43am View    
now i am doing any encryption but creating hashbytes for password in SQL server as explained by
https://www.mssqltips.com/sqlservertip/4037/storing-passwords-in-a-secure-way-in-a-sql-server-database/
as is done perfectly but when comes into C# ASP.Net not getting the output returning error. Please help me in this point