![]() |
| ||
| How to Search record from the Sql Server Database 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 |
| ||
| Re: How to Search record from the Sql Server Database Quote:
Dim strSQL as String Hope this helps. |
| ||
| Re: How to Search record from the Sql Server Database Quote:
this help me out. but when i m printing the record it also shows me textbox and command button. So sir now how do i remove this from print out. |
| ||
| Re: How to Search record from the Sql Server Database Quote:
Private Sub btnsearch_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnsearch.Click Try txtmsg.Text = "" OleDbDataAdapter1 = New OleDbDataAdapter("select * from phbook where name like '" & ddl.SelectedItem.Text & "%'", OleDbConnection1) OleDbDataAdapter1.Fill(DataSet21, "phbook") OleDbConnection1.Open() Dim com As New OleDbCommand com.Connection = OleDbConnection1 com.CommandText = "select * from phbook" dg1.DataBind() Catch ex As Exception txtmsg.Text = ex.ToString OleDbConnection1.Close() End Try End Sub THIS WILL SEARCH THE TEXT AND ONLY CHECKING THE FIRST LETTER OF THE GIVEN TEXT: LIKE IF U WRITE "J" YHEN UT WILL SEARCH EVERY TEXT STARTING WITH THE LETTER J...... I HOPE THIS WILL HELP:cheesy: |
| ||
| Re: How to Search record from the Sql Server Database When passing query use parameters: Quote:
http://www.daniweb.com/techtalkforums/thread54946.html |
| ||
| Re: How to Search record from the Sql Server Database Quote:
i try using this sample code to my application.but if you dont mind, can you state the namesapece of DATA declarations for connection n data type to match with this code. tq |
| ||
| Re: How to Search record from the Sql Server Database please send me the c# sharp code .. i am developing the application using the c# (same project i am doing like job portal)] please send me ASAp |
| All times are GMT -4. The time now is 11:21 pm. |
Forum system based on vBulletin Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
©2003 - 2009 DaniWeb® LLC