Sajeel Munir's Blog

.NET Developer

  Home  |   Contact  |   Syndication    |   Login
  5 Posts | 0 Stories | 1 Comments | 4 Trackbacks

News

View Sajeel Munir's profile on LinkedIn

Archives

Post Categories

Cluster Map

Monday, December 03, 2007 #

DATE/TIME Data Types:

  • DATE – a date only type

  • TIME – a time only type

  • DATETIMEOFFSET – a time zone-aware date/time type

  • DATETIME2 – a date/time type with larger fractional seconds and year range than the existing DATETIME type

The new data types enable applications to have separate data and time types, while providing large data ranges or user-defined precision for time values.


SQL Server 2008 Product Overview:
For organizations to be successful and thrive in today’s world of data, they need a vision that addresses key data trends. The data platform vision of Microsoft helps organizations meet these data explosion needs and the next generation of data-driven applications. Microsoft will continue to invest in and evolve the following key areas to support their data platform vision: mission-critical enterprise data platform, dynamic development, relational data, and business intelligence. Read this paper to learn about the Microsoft Data Platform Vision and how SQL Server 2008 meets the needs of the next generation of data-driven applications.

Included in this document:

SQL Server 2008 Data Platform Vision

What’s New in SQL Server 2008

Mission Critical Platform

Dynamic Development

Beyond Relational Data

Pervasive Business Insight

http://www.microsoft.com/sql/2008/default.mspx

Tuesday, September 11, 2007 #

Last week, I started deploying a new DOTNETNUKE project on one of our DEV Server and instantly I got web configuration error.

Scenario: (IIS: Default Web Site is pointing to "C:\Inetpub\wwwroot" Virtual directory. (DOTNETNUKE Project)
Under the default web site I also created another virtual site which was pointing to D:\\Mysite directory. (Asp.net project)

Problem: http://localhost/default.aspx was working Ok. BUT http://localhost/mysite/default.aspx through a dotnetnuke error message.

Compilation error

This type of error message made me confused because “Mysite” website was pointing to D:\\mysite directory and I was getting dotnetnuke related error message. It was strange.

Solution: after Google search, I found that the newly created website automatically inherits the root web's config settings. For more info: http://msdn2.microsoft.com/en-us/library/b6x6shw7.aspx

Stop Inheritance: <location inheritinchildapplications="false"></ location> web.config tag

"The InheritInChildApplications property represents the inheritInChildApplicationsattribute of a element within a configuration file. Set InheritInChildApplications to false to prevent settings that are specific to a certain location, such as the root directory of a Web site, from being inherited by applications that exist in subdirectories.
The following example shows how to use this attribute in a configuration file to specify that the settings defined in the location element for the root of a Web site should not be inherited by child applications:"

The InheritInChildApplications property applies only to location-specific configuration settings.

Any configuration that's specified within such a location tag, does not inherit down. For example:

<location inheritinchildapplications="false"></location>
<system.webserver></system.webserver>
<asp></asp>


<system.web></system.web>
<dentity></dentity>
<system.web></system.web>
<connectionstrings></connectionstrings>


This solves the problem.

Tuesday, August 28, 2007 #

DotNetNuke is an open-source Web Application Framework ideal for creating and deploying projects such as commercial websites, corporate intranets and extranets, online publishing portals, and custom vertical applications.  

DotNetNuke is provided as open-source software, licensed under a BSD agreement.  In general, this license grants the general public permission to obtain the software free-of-charge.  It also allows individuals to do whatever they wish with the application framework, both commercially and non-commercially, with the simple requirement of giving credit back to the DotNetNuke project community. 

DotNetNuke is built on a Microsoft ASP.NET (VB.NET) platform, and is easily installed and hosted.  With a growing community of over 440,000 users, and a dedicated base of programming professionals, support for DotNetNuke is always close at hand.

For more information:
http://www.dotnetnuke.com/Products/WebApplicationFramework/tabid/777/Default.aspx 


Saturday, August 25, 2007 #

View Sajeel Munir's profile