i am developing a job site and i require to search for records from the database. i m passing value fro that parameter in textbox.
so please help me
thanks in advance
Dhruv Shah 0 Newbie Poster
Recommended Answers
Jump to Posti am developing a job site and i require to search for records from the database. i m passing value fro that parameter in textbox.
so please help me
thanks in advancepseudo_code:
Dim strSQL as String strSQL = "SELECT Field1, Field2 FROM tbltemp WHERE Field1 = …
Jump to PostWhen passing query use parameters:
cmd.CommandText = "SELECT ID, Title, Job FROM Jobs WHERE Title=@Title"
cmd.Parameters.Add("@Title", SqlDataType.NVarChar).Value = Me.txtTitle.Text.TrimTo hide some element while print:
http://www.daniweb.com/techtalkforums/thread54946.html
All 6 Replies
Paladine 138 Master Poster Team Colleague
Dhruv Shah 0 Newbie Poster
Blah Blah 0 Newbie Poster
ManicCW 3 Junior Poster in Training
june_bunga 0 Newbie Poster
krany18 0 Newbie Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.