Active Server Pages (ASP), also known as Classic ASP or ASP Classic, was Microsoft’s first server-side script engine for dynamically-generated web pages. Initially released as an add-on to Internet Information Services (IIS) via the Windows NT 4. 0 Option Pack, it was subsequently included as a free component of Windows Server (since the initial release… Continue reading Effectiveness of ASP.NET
Category: Microsoft
Virtual Paths in ASP.NET 3.5 Tutorial
Virtual paths can be tricky in ASP.NET when dragging user controls across different folders.
Microsoft Office for Mac 2008 Business Edition
Develop professional documents with Word building blocks and commonly-used business templates Build informative, accurate spreadsheets with easy-to-use, preformatted Excel formulas Manage e-mail, daily appointments and tasks with Entourage Apply SmartArt graphics to create polished presentations and reports Connect with others through Microsoft Office Exchange Server support Product Description Whether you have a Mac or an… Continue reading Microsoft Office for Mac 2008 Business Edition
ASP.Net 2.0 Membership IV Roles
Microsoft ASP.Net 2.0 Membership IV
Pro T-SQL 2005 Programmer’s Guide
Product Description Pro T-SQL 2005 Programmer’s Guide provides comprehensive and detailed coverage of all the major features and facilities of T-SQL for SQL Server 2005. It is designed for all users of T-SQL, database administrators, systems administrators, application developers, and end-users, who want to learn how to exploit the power of T-SQL. Whatever you need… Continue reading Pro T-SQL 2005 Programmer’s Guide
ASP.NET 3.5 Social Networking
Product Description In Detail Social Networking is all about developing connections or ties between friends and associates. While people have always networked with one another the Internet has allowed us to network with people all over the world easily. Any interest or cause can support its own social network, where fans and followers can meet,… Continue reading ASP.NET 3.5 Social Networking
Microsoft Visual Basic .NET Programmer’s Cookbook
Product Description Filled with the ingredients developers need—code samples, instructions, and solutions to common problems—this book is the logical place for developers to start building projects and learning more about Visual Basic .NET…. More >> Microsoft Visual Basic .NET Programmer’s Cookbook
SQL SERVER Tutorial – T-SQL: Inserting Data – Identity Values – Delimiters – Insert Multiple Rows
T-SQL Tutorial
Microsoft ASP.NET and AJAX: Architecting Web Applications
ISBN13: 9780735626218 Condition: NEW Notes: Brand New from Publisher. No Remainder Mark. Product Description Rethink the way you plan, design, and build Web applications—with expert guidance from Web development luminary Dino Esposito. Whether giving legacy sites a much-needed tune-up—or architecting rich Internet applications from the ground up—you’ll learn pragmatic approaches to AJAX development that you… Continue reading Microsoft ASP.NET and AJAX: Architecting Web Applications
Mac developers embrace .NET with Visual Objective-C
Mac developers embrace .NET with Visual Objective-C Visual Studio 2010 for Mac OS X brings many of the Microsoft platform ‘s features to Mac users, for the first time Visit website for full story… Read more on SD Times
MCTS Self-Paced Training Kit
Product Description Ace your preparation for the skills measured by MCTS Exam 70-562—and on the job. Work at your own pace through a series of lessons and reviews that fully cover each exam objective. Then, reinforce and apply what you’ve learned through real-world case scenarios and practice exercises. This official Microsoft study guide is designed… Continue reading MCTS Self-Paced Training Kit
Professional ASP.NET 3.5: In C# and VB
ISBN13: 9780470187579 Condition: USED – VERY GOOD Notes: Product Description This book was written to introduce you to the features and capabilities that ASP.NET 3.5 offers, as well as to give you an explanation of the foundation that ASP.NET provides. We assume you have a general understanding of Web technologies, such as previous versions of… Continue reading Professional ASP.NET 3.5: In C# and VB
Microsoft Outlook 2007
Integrated solution for managing your time and information, connecting across boundaries, and remaining in control of the information that reaches you Helps you quickly search your communications, organize your work, and better share your information with others Instant Search minimizes the time it takes to locate information; redesigned interface makes composing, formatting, and acting on… Continue reading Microsoft Outlook 2007
Microsoft Windows 7 Home Premium
Windows 7 Home Premium (includes 32-bit & 64-bit versions) makes it easy to create a home network and share all of your favorite photos, videos, and music–you can even watch, pause, rewind, and record TV Make the things you do every day easier with improved desktop navigation Start programs faster and more easily, and quickly… Continue reading Microsoft Windows 7 Home Premium
Visual Basic Programming Language and Its Significant Features
Visual Basic is a third generation event-driven programming language. The Microsoft Corporation released Visual Basic in 1987. It was indeed the first visual development tool from Microsoft. Visual Basic was derived from BASIC and enables rapid application development of graphical user interface applications, access to databases using DAO, RDO, or ADO, and creation of ActiveX… Continue reading Visual Basic Programming Language and Its Significant Features
Professional ASP.NET 4 in C# and VB
Product Description This book was written to introduce you to the features and capabilities that ASP.NET 4 offers, as well as to give you an explanation of the foundation that ASP.NET provides. We assume you have a general understanding of Web technologies, such as previous versions of ASP.NET, Active Server Pages 2.0/3.0, or JavaServer Pages.… Continue reading Professional ASP.NET 4 in C# and VB
Microsoft Office 2008 for Mac Home & Student Edition
Streamlined user interface runs natively on both Intel- and PowerPC-based Macs Open XML file formats, the Office Art graphics engine, and other features that result in compatibility and file fidelity Professional design is within your power with hundreds of new customizable templates and suite-wide themes, SmartArt graphics, and the new Publishing Layout View in Word… Continue reading Microsoft Office 2008 for Mac Home & Student Edition
Pro ASP.NET MVC Framework
ISBN13: 9781430210078 Condition: NEW Notes: Brand New from Publisher. No Remainder Mark. Product DescriptionSteven Sanderson has seen the ASP.NET MVC framework mature from the start, so his experience, combined with comprehensive coverage of all the new features, including those in the official MVC development toolkit, offers the clearest understanding of how this exciting new framework… Continue reading Pro ASP.NET MVC Framework
MS SQL Server / SELECT clause with a CASE expression
In SQL Server, if you have a column which has NULLs and instead of nulls, if you want to display ‘Nothing’, what would you do? The following query SELECT CASE Dept_Name WHEN NULL THEN ‘Nothing’ ELSE Dept_Name END Dept_Name FROM Inventory would still display the nulls and not ‘Nothing’. Workaround:
How to create an auto-incrementing column in MS SQL Server 2000
Unlike Microsoft SQL Server 2005 and 2008, MS SQL Server 2000 does not have a ROW_NUMBER() function which applies only to the results of a SELECT query as it doesn’t store any permanent value in the DB. The way it works is in keeping with the principles of relational databases. There is no implict ordering… Continue reading How to create an auto-incrementing column in MS SQL Server 2000