is it possible to call asp function inside java script function?
eg
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<%@ Import Namespace="System.Xml" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
protected void btnSave_Click(object sender, EventArgs e)
{
}
</script>
<head>.....
</head>
script type="text/javascript" language="javascript">
function abc()
{ .
.
.
.
btnSave_Click( sender, e);
}
This code is just to give you idea what kind of working i want. Thank you.
sangram Nandkhile.