This is y second time posting Please help 1Two Microsoft dev
This is ,y second time posting. Please help
1)Two Microsoft developed types of web services are ____________________ and ________________________.
2) Server-side scripting ______________ to the client.
3) A get request sends parameters ________, while a post request sends them in ________.
4)Write a sql statement to edit all existing records so that the field lastUpdated has today’s date in it within the table CustomerPurchases.
Solution
1)Two Microsoft developed types of web services are WCF and ASMX.
2) Server-side scripting is not visible to the client.
3) A get request sends parameters as querystring, while a post request sends them in the body of the request after the headers.
4)
Update CustomerPurchases
set lastUpdated = NOW();
