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("");
What else should i implement in the code?
Loading
Vipin RamolaPosted Mar 12, 2013, 1:23 AM
Try this
Response.Write( "" );
Vishal GilbilePosted Mar 12, 2013, 1:07 AM
The following line of code may help you.
Response.Write("");
With Regards,
Vishal Gilbile.