No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
5 Posted Topics
was trying the drag and drop feature in html5. I have three blocks(boxA,B,C). Items are moved from box A to B or C. The problem is [B]when i move items from A to B, Box A doesnt retain the object [/B](instead of copying, it just moves the object). I have …
Hi, Suppose i have a model with a validation [CODE]public class LoginModel { [Required(ErrorMessage="ID not entered")] [StringLength(5,ErrorMessage = "Length should be 5")] public string Id { get; set; } }[/CODE] In the view page i have a text box. When the validation fails. The controller returns to the view page …
Hi everyone, I am using netbeans 6.8 version. I was trying to learn servlet by working around.So i created a html file ,in which i placed a form whose action is given as "login.java" which is a servlet file. But when i run the program and click on the button …
Please have a look at the code below :[CODE] public class Person { public string Name= ""; public int age; public void accept() { Name = Console.ReadLine(); age= Int16.Parse(Console.ReadLine()); } } class Program { public static void Main() { //Serialisation-------------- FileStream fs = new FileStream(@"d:\newfile.xml",FileMode.OpenOrCreate,FileAccess.ReadWrite); Person obj = new Person(); …
Hi I was trying to extract the content of a pdf file and display its content in android. I tired the code in java and it worked.But when i am coding it in android, its not displaying anything.I placed the file in assets folder and then used asset manager(not sure …
The End.
thomas6188