2
Answers

How to append number to string in message box

sita k

sita k

11y
1k
1
Hi,

   I got the sequnce id from stored procedure output parameter.I wanted to append this id to the string 'Record created '.

  I used the below code :
lbl.Text=cmd.Parameters["id"].Value;     
Response.Write("<script>alert('New Record Inserted With Id'||lbl.Text)</script>");

 What else should i implement in the code?
Answers (2)