Posts made in March, 2011

Ajax + jQuery => to submit the html form without refreshing the page

Posted by on Mar 31, 2011 in AJAX, Blog | 13 comments

A little something here that I just made up my mind.. update my tech blog on daily basis. This is very interesting approach to submit the html form. ajax+jquery part: <script type=”text/javascript” src=”http://ajax.googleapis.com/ajax/ libs/jquery/1.3.0/jquery.min.js”> </script> <script type=”text/javascript” > $(function() { $(“.submit“).click(function() { var name = $(“#name”).val(); var username = $(“#username”).val(); var password = $(“#password”).val(); var gender = $(“#gender”).val(); var dataString = ‘name=’+ name +...

Read More

c# backgroundWorker termination

Posted by on Mar 30, 2011 in Blog, c# .NET | 4 comments

Recently I was a bit busy with multiple projects involving PHP and C#.NET. I feel so guilty that I did not manage the time very well to update my simple site as my work portfolio. I was asked to create a simple application to help company employees to manage virtual image VDI files used virtual box. I decided to go for it using C# .net in visual studio express 2010. It is actually my first application in c# using visual studio. I had plenty of problems and issues as I stepped through this little development. One of bigger issues I faced was that I had to use a backgroundWorker as a separate thread to handle progress bar report updating. When clicking on the cancel file...

Read More