-
28 October 2008 18:04
Admin
New Visual Studio 2010 and .NET Framework 4.0 CTP released with about same times new .NET logos.
Visual Studio 2010 and the .NET Framework 4.0 mark the next
generation of developer tools from Microsoft. Designed to address the
latest needs of developers, Visual Studio delivers key innovations in
the following pillars:
Democratizing Application Lifecycle Management
Application Lifecycle Management (ALM) crosses many roles within an
organization and traditionally not every one of the roles has been an
equal player in the process. Visual Studio Team System 2010 continues
to build the platform for functional equality and shared commitment
across an organization’s ALM process.
Enabling emerging trends
Every year the industry develops new technologies and new trends. With
Visual Studio 2010 and .NET Framework 4.0, Microsoft delivers tooling
and framework support for the latest innovations in application
architecture, development and deployment.
Inspiring developer delight
Ever since the first release of Visual Studio, Microsoft has set the
bar for developer productivity and flexibility. Visual Studio 2010
continues to deliver on the core developer experience by significantly
improving upon it for roles involved with the software development
process. .NET Framework 4.0 contains numerous improvements that make it
easier to develop powerful and compelling applications.
Riding the next generation platform wave
Microsoft continues to invest in the market leading operating system,
productivity application and server platforms to deliver increased
customer value in these offerings. With Visual Studio 2010 and .NET
Framework 4.0 customers will have the tooling support and the platform
support needed to create amazing solutions around these technologies.
Click for download Visual Studio 2010 and .NET Framework 4.0 CTP VHD Image
Click for more information about Visual Studio 2010 and the .NET Framework 4.0
-
28 October 2008 16:40
Admin
New version jQuery 1.2.6 intellisense (Visual Studio Autocomplete Documentation) is available on download section in jquery.com . It's also uploaded by John Resig to jquery project page on code.google.com . New intellisense documentation name called Visual Studio Autocomplete Documentation and version is "Comment version: 1.2.6a". It's supported by Microsoft and I announced it in my post.
You can download jquery-1.2.6-vsdoc.js (171 Kb)
-
26 October 2008 09:09
Admin
Visual Studio JavaScript
intellisense feature is very cool. But if you are adding JavaScript
files to Master Pages with ResolveUrl method, you can not use
intellisense feature in design time. Also you can use
intellisense feature with different way. There is a sample code
below.
In Master Page :
<script src="<%=ResolveUrl("~/Js/jquery-1.2.6-intellisense.js")%>"
type="text/javascript"></script>
<asp:Literal ID="ltrJs" runat="server" Visible="false" EnableViewState="false">
<script src="Js/jquery-1.2.6-intellisense.js" type="text/javascript"></script>
</asp:Literal>
First section is require
for detect javascript file's url in runtime. Second section is
require for intellisense support in design time. Second section can
not display in rendered page. Of course you can use
intellisense feature in which pages using this master page.
Updated - 03.11.2008 (Thanks to Visual Web Developer Team) The other way:
<script src="<%=ResolveUrl("~/Js/jquery-1.2.6.js")%>"
type="text/javascript"></script>
<% if (false) { %>
<script src="Js/jquery-1.2.6-intellisense.js" type="text/javascript"></script>
<% } %>
-
22 August 2008 03:15
Admin
Visual Studio 2008 Service Pack 1 and .NET Framework 3.5 Service Pack 1 Released.
The following technologies have been tested and verified to work with SP1 :
- Silverlight 2 SDK Beta 2 & Silverlight Tools Beta 2. (If
Silverlight Tools Beta 2 is already installed, you must upgrade it
after you install Visual Studio 2008 SP1. To upgrade, use the installer
on the Silverlight Tools Beta 2 page on the Microsoft Download Center Web site.)
- MVC Preview Release #3
- ASP.NET Extensions/Dynamic Data Preview
- VC 2008 Feature Pack
- VB PowerPack Controls (2.0 & 3.0)
- Expression Studio 2 (RTM)
- SQL Server 2008
- .NET Framework 3.5 SDK
- XSLT Profiler
- VSTA 2.0 SDK
- Visual Studio 2008 SDK
Click for Visual Studio 2008 SP1 Web Installer.
Click for ISO file.
Click for Express Editions with SP1 included.
-
18 July 2008 05:08
Admin
INETA Summer Hit 2008 is a local event that will be held in Istanbul on 2-3
August.
Location: Yildiz Technical University, Auditorium
Registration:
http://tinyurl.com/inetasummerhit
The complete list of speakers and the schedule is below.
Speakers
Ali Rıza Babaoğlan
Ali Servet
Eyüpoğlu
Coşkun Sunalı
Daron Yöndem
Eralp Erat
Kadir Çamoğlu
Uğur Umutluoğlu
Schedule
2 August
09:30 - 12:00 Silverlight 2.0
13:00 - 15:00 Future of Software
Development
15:30 - 18:00 Team Foundation Server
3 August
09:30 - 11:00 Internet Explorer 8.0
11:00 - 12:00 Web 3.0
13:00 - 14:30
Web Client Software Factory
15:00 - 17:30 LINQ
-
16 June 2008 08:47
Admin
MasterPages came with ASP.NET 2.0 and it's very useful. If you are using master pages, JavaScript files, images, links and sub folders in own projects. This article is very useful for you.
For example you insert image in your master page and create an aspx file in subfolder.
In master page : <img src="Images/mustafaozcanblog.png" alt="Mustafa ÖZCAN's Blog" />
Sample.aspx file is in samples folder and it is use master page in root folder. Added images cannot be displayed in rendered sample.aspx page because images folder in root folder but samples.aspx page search it in samples directory.
So you have two ways solution for this problem:
1st Way: You must change this line for added image :
<img src="~/Images/mustafaozcanblog.png" alt="Mustafa ÖZCAN's Blog" runat="server"/>
2nd Way: You must change this line for added image :
<img src='<%=ResolveUrl("~/Images/mustafaozcanblog.png")%>' alt="Mustafa ÖZCAN's Blog" />
You can use 2nd Way to added JavaScript files and other external content in master page file.