Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~296 People Reached
Favorite Forums
Favorite Tags
Member Avatar for shiva tiwari

**fetch the record from the datsbase through specified query string ** public void get_student() { if(Request.QueryString["empId"]!=null) { int id = Int32.Parse(Request.QueryString["empId"]); sql = new SqlConnection(con); sql.Open(); string retriew = "select * from emp where emp_id="+id; SqlDataAdapter adapter = new SqlDataAdapter(retriew, sql); adapter.SelectCommand.CommandType = CommandType.Text; hfid.Value = id.ToString(); DataTable dt = …

Member Avatar for Reverend Jim
-1
296