Click here to Skip to main content
15,914,820 members

Comments by londhess (Top 17 by date)

londhess 20-Sep-17 8:23am View    
not really understand your problem.
londhess 20-Sep-17 7:52am View    
check your network settings, as well as inner exception. If you are in your office network, that might be possible the file you are trying to download is blocked by your company proxy.
From browser, suppose you are able to download the file, then open Visual studio with administrator and then give a try.
londhess 18-Jul-17 7:36am View    
Yes, you can use as many role that you want in your project. Below link give you brief idea on role base authentication and authorization.
https://docs.microsoft.com/en-us/aspnet/web-forms/overview/older-versions-security/roles/role-based-authorization-cs
londhess 18-Jul-17 5:18am View    
try to check below link.
https://www.aspsnippets.com/Articles/Implement-Form-based-Authorization-and-Authentication-in-ASPNet.aspx
londhess 17-Jul-17 8:11am View    
You can used jQuery event

$(document).keypress(function(e) {
if(e.which == 13) {
$(document.activeElement).next().focus();
}
});