hi
I have created a form with 5 textboxes and Two Buttons like Save and Cancel.

When i Click the Save Button it refers to the Save routine in Server side like

<script runat=server>
Sub SaveClk(................)
..........
............
End Sub
</script>
now the problem is i need to Clear the all Textbox values after finish my Save Routine. If i have RESET button i can use that. But i need to clear after my save routine finished..

Any idea?