-
Hi, There is an urgent opening in Calicut for the post of Team Leader. Experience : 5-7 years Core Skills: Microsoft Technologies ( ASP.NET , C#, WCF, WPF, Silverlight), Web Technologies (HTML, JQuery, AJAX etc) Desired Skills : Flash Action Scripting Language Skills : Good in English Written and Verbal...
-
In our project we used to upload Video files < 30MB to web server. Now the client comes with a change that he want to upload the files to a different server and need to play it from there, he thinks it will reduce the burden of main web server. How can we upload a file to a different server?
-
Is there any problem in this class design? public class Users : List<users.user> { public class User { public int UserId { get; set; } public string UserName { get; set; } public string Password { get; set; } public string Email { get; set; } } }
-
Hi All I want to check a remote file exists using ASP.Net, its in a different web application. I was using a code like this. using (WebClient client = new WebClient()) { try { Stream stream = client.OpenRead("http://localhost/dynamicweb2/quote12.png"); if (stream != null) { //exists } } catch...