ADO.NET Sync Services v1.0

Author: Hi, I am Daniel Moth
Introduction: In this 18' video you will learn from scratch how to take advantage of .NET Client Application Services. As usual, the code and links to the documentation are available from my blog.
Video download: For this video, click on the image/button to play the video OR right click and Save As on the same location.
private void btnLoad_Click(object sender, EventArgs e)
{
if (Thread.CurrentPrincipal.Identity.IsAuthenticated)
{
txtLow.Text = Settings.Default.lowValue.ToString();
txtHigh.Text = Settings.Default.highValue.ToString();
}
}
Daniel,
How do you deploy the above described service to the IIS?
Thanks,
Marat
Daniel,
What is the proper way to deploy the above service to IIS?
Marat
Hi everybody, im trying to implement this, but when i used de aplication in other machine i get the next message:
Se ha producido un error al crear el controlador de seccion de configuracion para system.web/membership
some idea how solve it?
@Daniel or anyone
You implemented service and client as two different applications. Is there a way I can implement both in one visual studio solution and deploy as a whole and not as different applications.
Thank you