Hi all,
I need help in ASP.NET and Silverlight applications.
How can we keep a track of all log files in .NEt and Silverlight applications?
Just like there are error logs in Windows and Microsoft VS2010 and other versions.
Can anyone please explain the concept of log files and its implementation.
Thanks all in advance..
Loading
Riddhi ValechaPosted May 16, 2013, 12:11 AM
I will try out these codes first. If worked, I will implement it in my project.
Thanks a lot once again.
Jignesh TrivediPosted May 16, 2013, 12:06 AM
hi,
As you know silver light is client technology and run on client side, so if you are creating any file it create on client machine.
so if you want to create the file on server side, so you need make call of WCF service or HttpHandle.
normally Silverlight use Isolated Storage to store local file on client machine.
Please refer
http://www.dotnetcurry.com/ShowArticle.aspx?ID=168&AspxAutoDetectCookieSupport=1
also
http://www.codeproject.com/Articles/374775/Best-Practice-logging-pattern-for-Silverlight-appl
hope this will help you.