Yes; just follow this |
| Sujit Patil replied to Johann Montfort at 09-May-08 04:42 |
Yes thats correct. Just follow these steps;
I. Create a webservice in asp.net 2.0 .
II. Add all of your DAL function in that webservice like;
Function insertIntoTable()
{
}
III. Add connection string in web.config of this webservice and use it to access database.
IV. Then add a web reference of this web service to your project.
V. And use methods from that web serive in your project like;
Dim serviceObj As New MyWebService // MyWebService is the service name which you have added as a web reference......
serviceObj.insertIntoTable( params....)
Best Luck!!!!!!!!!!!!!
Sujit. |
|