I uploaded this new article in the Unedited Section of CodeProject. AbstractThis article describes how we can use XML as a metadata source for SCG Templates. It also shows step-by-step instructions of how to generate strongly typed objects from XSD and use it in the templates to generate text based output. ASP.NET developers can also use this paper as reference to transform XML using ASP.NET scripts and avoid XSLT. Introduction We all agree that XML's primary purpose is to facilitate the sharing ......
While browsing the internet I found this article “Business Object for CodeSmith” by JR Hull, this comes with some CodeSmith templates that generates object layer, data access layer, and related sql from a schema defined in the XML. I thought this will be a good and quick example to show for SCG where XML is concerned, I converted the templates to SCG templates and these are producing the same output. These templates will generate ObjectLayer, DataAccess Layer and SQL for you.To run the example quickly ......
Microsoft has released a new tool to migrate from Oracle to MS SQL.
"SQL Server Migration Assistant for Oracle V3.0 "
http://go.microsoft.com/?linkid=6604763
This download is a complete suite of tools that cuts the effort, cost, and risk of migrating from Oracle to SQL Server.
Enjoy converting hasslefree.....
XSL stands for Extensible Stylesheet Language (OR XSL = Xml Style Sheet) and XSLT is the language to transform XML documents. Its a common practice to use XSLT to to transform an XML document into another XML document, or another type of document that is recognized by a browser, like HTML and XHTML. Normally XSLT does this by transforming each XML element into an (X)HTML element.But today we will see how we can use ASP.NET scripts to achieve the same. This blog post is dedicated to those programmers ......
Here is a cool technique on how to identify which control has triggered the UpdatePanel (when dynamic controls are added during runtime). Here we will use the Request Object to identify this. Lets say we have updatePanel1 <div><asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="conditional"> <ContentTemplate> <asp:Label ID="Label1" runat="server" Text=""></asp:Label> <asp:Panel ID="Panel1" runat="server" Height="50px" Width="125px"> </asp:Panel> ......
Getting Started Overview Installing ASP.NET AJAX Sample ASP.NET AJAX Application Introduction to the UpdatePanel Control Introduction to the UpdateProgress Control Introduction to the Timer Control ASP.NET AJAX Server Controls UpdatePanel Control Overview The UpdatePanel Control UpdateProgress Control Overview The UpdateProgress Control Timer Control Overview The Timer Control ScriptManager Control Overview Client Scripting Extending JavaScript with ASP.NET AJAX Creating Custom Client Script in ASP.NET ......