Microsoft will release it's Model view controller base framework for asp.net. In this user will have built in support for model view controller architecture.Here are the some interesting collection of links related to asp.net MVC Framework..ASP.NET MVC Introduction:http://weblogs.asp.net/scottgu/archive/2007/10/14/asp-net-mvc-framework.aspxhttp://weblogs.asp.net/scottgu/archive/2007/11/13/asp-net-mvc-framework-part-1.aspxDownload...
Tuesday, February 19, 2008
Agile Software Development
Agile software development is a concept of a software engineering for quick software development. As a software development process is combination of many phases like requirement analysis and gathering, feasibility study, design,coding and testing and documentation. In agile software development We follow all the above things in agile development with each iteration. Software development prorities...
Automated Testing for ASP.NET- NUnit ASP
We all developing asp.net application using Microsoft.net and as a human being we all can't kept track of each and everything. We meant to have some error in our code. We call them bugs. Bugs can be removed via testing. Some time testing take more time then expected, so we have to use the automated testing tool to test your asp.net applications.I have found a great automated testing framework for...
Friday, February 15, 2008
XML for asp.net
Posted by Jalpesh Vadgama |
February 15, 2008 |
ASP.NET, Blog, C#.NET, VB.NET, Web-Service |
No comments
I have found a great resources for developers who are using XML in asp.net frameworks. The site http://www.xmlforasp.net/ having all the thins that require to develop application using XML in asp.net. It has videos, code bank , .NET XML training all the stu...
Creating Web Services in a Class Library project
Posted by Jalpesh Vadgama |
February 15, 2008 |
ASP.NET, C#.NET, Misc, SilverLight, VB.NET, Web-Service, Window |
1 comment
When you are developing a plug in or add in for a software some time you have a requirement for developing webservice hosting in DLL. I have found a great link which describes all the things. here is the link.. http://www.codeproject.com/KB/aspnet/wsinaclasslibrary.a...
Sharepoint blogs
I have found very good link for share point development. It has very good blogs that can can be very useful for share point developers.Here is the linkhttp://www.sharepointblogs.c...
Regular Expression Library
Regular expression is hottest technology nowdays. It saves lots of time of development. In asp.net we can use regular expression in regular expression as regular expression validation control. I have found the very good resource of ready made regular expression. Here is the link for that. http://regexlib.com/Default.aspx The RegExLib.com, the Internet's first Regular Expression Library. Currently...
Thursday, February 14, 2008
Infosys Guys are blogging about .NET
Infosys is India's most well know company at we all know.Recently I have visited the Infosys and I found there blogs about Microsoft Technologies. I had read some entries and I found lots of things to learn. here is the link for there blogs about Microsoft technology. http://infosysblogs.com/microsoft/net_20/...
Get a Blog on WindowsClient.NET.
If you are serious windows developer and intersted in blogging then windowsclient.net is a plateform to share your knowledge. You can create your blogs there. Microsoft has opened now for new bloggers. here is the link to signup blogs there.. http://windowsclient.net/community/blog-with-us.aspx Happy blogging......
My new blog at weblogs.asp.net
Well thanks to Joe Stagner and his team i got blog on the weblogs.asp.net which is a very good community of asp.net. You can see my posting at there http://weblogs.asp.net/JalpeshPVadgama No need to worry for this blog as i am constaly posting on both the blogs. Some posts may diffrer because this is my personal blog and i will post all the entries that i will post on weblogs at asp.net....
Tuesday, February 12, 2008
Three common mistake while creating application with ajax
I have found a great article about developing a application with ajax enabled rich text website. Here is the three mistakes we are making.. Page events still fire during partial postbacks. UpdatePanel events fire, even when not updating. Control event handlers fire after Load events Dave has posted a very good article on above mistake. Here is the link for that.. http://encosia.com/2007/10/24/are-you-making-these-3-common-aspnet-ajax-mistakes/...
Copy Paste source as html- Visual Studio Add in
If you blogging your code in your blogs post. You waste lots of time to format your code like in IDE. I have a solution for that. I have a found a add in which will copy paste code as html. So you don't need to do anything. Here is the link for that.. http://www.jtleigh.com/people/colin/software/CopySourceAsHtml/...
Windwos Live Writer Directly writing Blogs from desktop
If you are still logged in to blogger for writing yours blogs then here is the easy way to write blogs directly from your desktop. Windows live writer is a free application for writing blogs from your desktop. It supports lots of provider. You just have to setup a blog once then you don't need to do anything. here is the link to get live writer... http://get.live.com/writer/overview Happy programming.......
Monday, February 11, 2008
GetYear Function in Java Script is not working properly in firefox
Hi Folks, I have found that some times in firefox getyear function is not working properly. For example.We define a date value with following. var dtTo = new Date("11-Feb-2007"); Now if you do alert like Alert(dtTo.getYear()); But in firefix year is displaying like 107.So to fix this issue. I have used getFullYear function like Alert(dtTo.getYear()); And It's working fine......