Click here to Skip to main content
15,896,606 members

Comments by Naufel Basheer (Top 3 by date)

Naufel Basheer 9-Oct-14 3:29am View    
Yes
I can assign text to label, but the first label ("Flashing - Progress") was not reflecting .
I missed .Refresh();

see my post bellow
Naufel Basheer 17-Feb-14 7:54am View    
in this grid , my first Colum ('ProductCode')will have hyperlink , which will make an ajax call, and will show further details about the selected product ,
there is no text box in this code snip.
Naufel Basheer 29-Jan-14 7:51am View    
Deleted
Above solution works fine on OnAuthorization too...

public class CustomAuthorizationAttribute : FilterAttribute, IAuthorizationFilter
{
void IAuthorizationFilter.OnAuthorization(AuthorizationContext filterContext)
{
var request = filterContext.HttpContext.Request;
string userName = request["txtName"];

filterContext.Controller.ViewBag.OnAuthorization = "IAuthorizationFilter.OnAuthorization filter called";
}
}