What Is Synchronization In C# Exactly
Apr 29, 2010how to synchronize asp.net page . means how can we maintain synchronization in asp.net while loading pages/ page ?
View 1 Replieshow to synchronize asp.net page . means how can we maintain synchronization in asp.net while loading pages/ page ?
View 1 RepliesI'm workin with Visual studio 2010 and I'm trying to create an ASP.net Web Site, language used - C#
I have 2 different pages, for 2 different users with 2 different roles.Each page has a textbox.I have already created them.What I want to do, is to make a bind between this 2 textboxes, so that the second to get the first boxes' text.I managed to do it, but only if the textboxes are on the same page, very easy (Textbox2.Text=TextBox1.Text) . But how to do it for 2 different pages, for 2 different users with 2 different roles?
Another trouble would be....How can I connect the both users same time....after i start debugging the project, I do a sign in but when I sign in with the second user,the first is automaticly siggned out and the text it's lost.Then, how can they synchronize and the second user see what the first one wrote,using that 2 textboxes? Wich is the solution?
i need working example for remote file synchronization using WCF
View 1 RepliesThe problem is : when the Manager add one new user or delete one user,It is very slowly to synchronize with the database.
View 2 RepliesWhat best synchronization feature should I use in my asynccontroller action? [calling while(OutstandingActions > 0) is not an option)],
a. Async fetch 3 items from data service in parallel,
b. synchronize.
c. compute a value using the 3.
d. async save all 3 results to data service in parallel.
e.synchronize.
f. finish
l Im downloading Pdfs using WebClient I used below code
try {
WebClient wc = new WebClient();
Uri uriadd = new Uri(@"ftp://xxx.yyy..../httpdocs/FH/Foldername/" + clientorder1[i].Cloi_id + ".pdf");
wc.Credentials = new NetworkCredential("xxxx", "zzzz");
}
Its working fineĀ but some times Gives Error like Object synchronization method was called from an unsynchronized block of code.. Why this Error coming ....
I built a website using SQL 2008 Express. I want to deploy it to a hosting company (shared server). If I change the SQL 2008 Express database on my local machine (further development of the website), how can i synchronize the local SQL database with the one on the server without loosing data?
View 3 RepliesI'm fairly new to web service development, and I am really confused about how ASP.Net Development Server synchronizes with code during debug mode. When I make changes to my service, I cannot figure out how to propigate those changes so that my client can "see" them (I've been able to synchronize through a stumbling series of publishing the service, viewing the service in browser, etc... but I have a feeling there's a more reliable system than my random ritual). Here are the symptoms I'm seeing: After I've made a change to the code behind my service (Service1.svc.cs), started the application through the debugger and attached the debugger to the WebDev.WebServer.exe process as well, my latest changes are not executed, and my breakpoints are not hit (they have the message that "The source code is different from the original version." What really baffles me, though, is that when the ASP.Net Development Server notification pops up in my system tray, its physical path points to my project folder, so I don't understand how it could be looking at anything but my current code files.
View 1 Replies