Search results for query: *

  1. D

    SQL String not working to populate datagrid

    Looks as if I've solved the problem. It appears that In ASP.net you need to use the SQL wildcards So the following code is working. ls_querystring = ls_querystring & "Horses.Damno " ls_querystring = ls_querystring & "FROM Horses " If txt_HorseName.Text <> "" Then...
  2. D

    SQL String not working to populate datagrid

    Greetings I am just starting out with data access and vb net. I have the following code that works fine if the value of textbox txt_HorseName.Text is not populated, the if statement does evaluate to true and the where clause is not added to the SQL string. The SQL string is valid for both...
Back
Top