hi,are you fine please i want when i click in the button the prompt javascript show then when i enter the name and click ok in prompt the value that i was enter was get in
string and show in label
my code below the prompt show but nothing show in label i think that the get value of prompt didn't worked
form.aspx.cs ---->
protected void BtnDetail_Click(object sender, EventArgs e)
{
ClientScript.RegisterStartupScript(this.GetType(), "prompt", "var value = prompt('Enter your concat name .'); storeinput(value);", true);
string ConcatName = String.Format("{0}", Request.Form["hidValue"]);
//Label31.Text = ConcatName;
LablCount.Text = ConcatName;
}
form.aspx ------->
<head><title>
</script>
<script type="text/javascript">
function storeinput(value ...
Go to the complete details ...