http://morewally.com/cs/blogs/wallym/archive/2006/05/30/37.aspx
I ran into a problem with the IIS7 Managed Module Starter Kit. I would load Visual Studio .NET 2005 and I couldn't find the option to create the project anywhere. Steve Schofield told me that all you need to to do is to copy the IIS7 Managed Module Starter Kit file from the Project Templates directory to the Item Template directory and it would show up. Sure enough, that solved the problem.
While I must admit that I don't understand the a lot of the new options for the CS 2.1 upgrade of weblogs.asp.net, I like the options and I think it will bring a lot of new value to the site. Well done guys.
It looks like there is Desktop Profile / Experience / Role that you can enable
in Longhorn / Vista Server Build 5384 (beta2). By enabling it, I got the
Windows Mail application and a few other goodies. My hope is that this is for
us developers that use a server as our primary desktop environment.
http://morewally.com/cs/blogs/wallym/archive/2006/05/25/28.aspx
Looks like MS has just opened up a new web site for IIS. The site is
www.iis.net. There is even a VS.NET start kit for managed modules on the site. Very cool indeed.
Wally
Subscribe – Be like Wally (ok, maybe thats not the best idea)
Download
ASP.NET Podcast site: http://aspnetpodcast.com/CS11/blogs/asp.net_podcast/archive/2006/05/22/319.aspx
Show Notes:
- Doug Reilly.
- Todd Miranda.
- Dell goes to AMD!
- Source:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="DeclarativeDatabinding.aspx.cs" Inherits="Databinding_Databinding" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Declarative Databinding Page</title>
</head>
<body>
<form id="form1" runat="server">
<atlas:ScriptManager runat="server" ID="ScriptManager1" >
<Services>
<atlas:ServiceReference GenerateProxy=true Path="WebServiceProjects.asmx" />
</Services>
</atlas:ScriptManager>
<input type="button" id="btnGetData" value="Get Project List" onclick="GetData()" />
<script language="javascript">
function GetData()
{
WebServiceProjects.GetProjects(OnServiceComplete);
}
function OnServiceComplete(result)
{
debug.dump(result, "Returned data.");
var projectName = $("ProjectResults");
projectName.control.set_data(result);
}
</script>
<div id="ProjectResults">
</div>
<div id="ProjectTemplate">
This is a list of all project in the table tblProject:<br />
<div id="ProjectItemTemplate">
Project: <strong><span id="ProjectNameLabel"></span></strong>
</div>
</div>
</form>
<script type="text/xml-script">
<page xmlns:script="http://schemas.microsoft.com/xml-script/2005">
<components>
<listView id="ProjectResults"
itemTemplateParentElementId="ProjectTemplate" >
<layoutTemplate>
<template layoutElement="ProjectTemplate" />
</layoutTemplate>
<itemTemplate>
<template layoutElement="ProjectItemTemplate">
<label id="ProjectNameLabel">
<bindings>
<binding dataPath="ProjectName" property="text" />
</bindings>
</label>
</template>
</itemTemplate>
</listView>
</components>
</page>
</script>
</body>
</html