Re: how to enable disabled linkbutton
Hi Rion,Thank you for your suggestion.I had a problem not to be able to set enabled or disabled of the button in updatepanel.I was able to solve a problem in reference to your suggestion.Thank you.
View ArticleRe: how to enable disabled linkbutton
Hi Friend, Use the following code ,it may help you. protected void lnk_click(object sender, EventArgs e) { lnk1.Enabled = false; } protected void lnk2_click(object sender, EventArgs e) {...
View ArticleRe: how to enable disabled linkbutton
Thanks for the suggestions.Both the solutions din't work.I shows like disabled graying out the text which is still clickable.Any help?
View ArticleRe: how to enable disabled linkbutton
try use : lb.Attributes["disabled"] ="disabled";and lb.Attributes.Remove("disabled");
View ArticleRe: how to enable disabled linkbutton
This may have to do with the "disabled" attribute. When you add the "disabled" attribute, you should be able to set it to either "disabled" or "true" and when you enable the button, remove the...
View Articlehow to enable disabled linkbutton
I need to disable 4-5 linkbuttons when one of the linkbutton is clicked.My code works on both enabling and disabling in Mozilla 18.0.1 and ChromeVersion 24.0.1312.56 but in IE9 it disables but fails...
View ArticleRe: how to enable disabled linkbutton
If it's an actual link, you might consider overriding the click behavior using something like :LinkButton.Attributes.Add("onclick", "return false;");or :LinkButton.Attributes.Add("href", "#;");
View Article