Search results for query: *

  1. T

    Can't read Web.Config

    Check the syntax of your call, web.config is very particular for example: <customErrors mode="off"/> 'Doesnt Work... <customErrors mode="Off"/> 'Works!
  2. T

    Populating a DataGrid

    Neal, Try this is your webservice. This will return a dataset of all the brands that are related to the Id parameter being passed in. <WebMethod()> _ Public Function getbrandbyid(ByVal id As Integer) As DataSet Dim parameters As ArrayList = New ArrayList Dim param As...
Back
Top