Archive for the ‘ASP.NET’ Category

Get server information from the url of website

Below dotnet code will get you some server information about a website it is hosted. Note that sever can mock or disable data it is provided.

WebClient wc = new WebClient();
string site = @"http://www.msdn.microsoft.com/";
[...]

Leave a Comment

Article: PHP and ASP.NET – A feature list

Just posted one article on codeproject.com.
Here is the URL: http://www.codeproject.com/KB/applications/php_asp_net.aspx
This article is about finding out equivalent features of PHP and ASP.NET
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

ASP.NET MVC 3 – Preview 1 is here

Here are the major improvements in new version:

Improved View: New Add->View Dialog
New Razor engine
Improved Controller
Improved JavaScript and AJAX
Improved Model Validation

 
You can download it here.
More reading here at ScottGu’s blog - http://weblogs.asp.net/scottgu/archive/2010/07/27/introducing-asp-net-mvc-3-preview-1.aspx
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

ASP.NET 4.0 – new features

Topic is getting old, but still worth blogging.
 

web.config - If you are a developer from .NET Framework 1.0 to 3.5, you might have sensed the size increase of configuration files. Really, the 3.5 is full of junk content (joking!). The config file of 4.0 looks like this:

<?xml version="1.0"?>
<configuration>
<system.web>
<compilation debug="true"
targetFramework="4.0" /> [...]

Leave a Comment

The ASP.NET MVC 2 Series

Here is a series of good MVC articles from Brian Mains. This will give you an insight to the MVC concept plugged with ASP.NET.

Introduction to ASP.NET MVC 2.0 In this article, we’ll begin examining the new features of ASP.NET MVC 2.0 by comparing what ASP.NET MVC offers against its predecessor, ASP.NET web forms.

ASP.NET MVC [...]

Comments (1)

A new view engine for ASP.NET – code name: Razor

A view-engine using code-focused templating approach.
Read more details here: http://weblogs.asp.net/scottgu/archive/2010/07/02/introducing-razor.aspx
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

ASP.NET MVC 2 Released

Final release of ASP.NET MVC 2 is now available for VS 2008/Visual Web Developer 2008 Express with ASP.NET 3.5.
Download Links:

Download ASP.NET MVC 2 using the Microsoft Web Platform Installer
Download ASP.NET MVC 2 from the Download Center

 
What is new in ASP.NET MVC 2?

New Strongly Typed HTML Helpers
Enhanced Model Validation support across both server [...]

Leave a Comment

Return DataTable from Web Service

I know this is an old theme but I had to write a sample app for demonstration in a tech forum. So reproducing here also.
Importantly, the DataTable/DataSet must be serializable.
ASMX Code:

public class Service1 : System.Web.Services.WebService
{
 
[WebMethod]
[...]

Leave a Comment

N2 CMS - Good .NET CMS

N2CMS is a simple easily extendable CMS. Every ASP.NET web developers must try it. I felt the power only after my first trial.

Check: N2 Open Source ASP.NET CMS
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

High-Performance .NET Application Development & Architecture

Found this useful link while surfing.
Check this: http://www.developerfusion.com/article/5385/highperformance-net-application-development-architecture/
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment