or
var row = <%= Session["Row"] %>" ; this get the inital value
but i want suggest to set the session vaiable on client side so that i update next time in
page load function.
i have a templete column in which asp image is placed. i want the following functionality:
When the onclick is fired,
1) first the icon is changed
2) that row in which the icon is placed is deleted on next refresh.
how can i mark the row in onclick event?? so that i can delete it next it. plz help
| <telerik:RadEditor ID="RadEditor1" runat="server" AllowScripts="True" Skin="Telerik" |
| Height="474px" Width="658px" ToolsFile="Controls/SomeTools.xml"> |
| <Content> |
| </Content> |
| <ImageManager UploadPaths="~/Images/" ViewPaths="~/Images/" DeletePaths="~/Images/" /> |
| </telerik:RadEditor> |

Dear Support,
I'm having a little issue with the Ajax Manager.
With a button, I would like to dynamically add RadNumericTextboxes to a simple html table.
This is a fraction of the code:
| // click new row |
| protected void buttonNewRow_Click(object sender, EventArgs e) |
| { |
| // session |
| if (Session["rowCount"] == null) |
| Session["rowCount"] = 0; |
| // get int |
| int rowCount = (int)Session["rowCount"]; |
| Session["rowCount"] = ++rowCount; |
| } |
| // load page |
| protected void Page_Load(object sender, EventArgs e) |
| { |
| // add 5 rows by default |
| for (int i = 0; i < 5; i++) |
| AddRow(); |
| // add button clicked rows |
| if (Session["rowCount"] != null) |
| { |
| for (int i = 0; i < (int)Session["rowCount"]; i++) |
| AddRow(); |
| } |
| } |
