Hi,
I want to display a message when i click a button.
So, from server side in my button_click i have below code:
grid.Controls.Add(new LiteralControl(string.Format("<span style='color:red;font-size:Large;'>{0}</span>", text)));The message displays fine. but it is displaying my grid's footer.
Can someone help me with a code to align the message on top (header?).
I really need this badly.
I understand we can use,
grid.Controls.AddAt('position',new LiteralControl(string.Format("<span style='color:red;font-size:Large;'>{0}</span>", text)));
How can i set the position to grid's header?
thanks.