<script type="text/javascript" language="javascript">
function moveindex() {
var me2 = document.selection.createRange();
me2.moveStart("character", 200);
me2.select();
}
</script>
code for calling the function in the body section
<asp:TextBox ID="TextBox1" runat="server" onfocus="moveindex()"/>
Thanks and Regards
Meetu Choudhary