ASP.NET Navision Database access via C/ODBC WebService/ASP.NET Application
Navision Database access via C/ODBC WebService/ASP.NET Application ASP.NET / .NET and Databases
The topic of this article is Navision Attain database access through Webservice, connected to Navision via C/ODBC based Linked Server – the mechanism available in MS SQL Server 2000 and transfer the results to ASP.NET application. Our goal will be ASPX page accessing Navision Customers.
Connect to Access Database in Visual Studio .NET ASP.NET / .NET and Databases
This tutorial uses DataReaders to read the data from a Microsoft Access Database in Visual Studio .Net 2003. ASP.NET web application is used in this tutorial so at the end you will have a web page that derives its data from an Access database.
File Uploading to Access Database using ASP.NET. ASP.NET / File Operations
In this article we will learn how to upload one or more files from the client browser to a Microsoft Access database using plain ASP.NET. We will not be creating or making use of any commercial or home-made components, instead we will learn to make use of standard ASP.NET HTML controls which are part of ASP.NET 1.0. Uploading files to Microsoft Access is very useful and we'll learn in this article how to do that.
Connect to MySQL from ASP.NET ASP.NET / .NET and Databases
In this article I'll explain the necessary steps to connect to MySQL from ASP.NET. We will connect to our MySQL database using ODBC .NET data provider and DSN-less connection.
What is Active Server Pages.net? ASP.NET / Getting Started
ASP has been rebuilt from the ground up. The result is ActiveServerPages.net. ASP.net, with a host of new features, provides for easier to write, cleaner code that's simple to reuse and share. ASP.net boosts performance and scalability by offering access to compiled languages.
ASP.NET Application Fundamentals ASP.NET / Getting Started
This tutorial covers the fundamentals involved in building an ASP.NET application. From a syntactical point of view, writing .NET code is similar to writing the classic ASP code that you may have seen during the late dot-com era. Many of the key symbols remain the same, and even some of the syntax survives. However, the entire underlying execution model changed dramatically between classic ASP and ASP.NET. Whereas executing classic ASP pages was primarily an exercise in rendering HTML, interpreting script code, and calling Component Object Model code, ASP.NET introduces an entirely new object-oriented execution model.
Connecting to a SQL database from ASP .NET II ASP.NET / .NET and Databases
This is part II of the tutorial that teaches you how to connect to a SQL database from ASP .NET using SQL Authentication. This part shows you how to connect to the database using ASP .NET code and Visual Studio .NET's features.
Using ASP.NET Code-Behind Without Visual Studio.NET ASP.NET / General Development
One of the things that keeps coming up as a benefit of switching to ASP.NET is the ability to use code-behind to separate display code from application logic. In Visual Studio.NET, this is 'automagically' done for you. So what if you don't have VS.NET? Here's how you can implement code-behind using just a plain old text editor and the tools included in the .NET Framework... no VS.NET required!" Source codes available for download.
Diagnostics and Debugging ASP.NET / Debugging and Error Handling
This tutorial covers the support provided by ASP.NET for figuring out what's wrong with your ASP.NET application. As you can imagine, debuging Web applications introduces a whole new set of challenges. This tutorial shows you how to watch your application as it runs and trace the state of any particular request.
Logging In ASP.NET / Security and Membership
This tutorial covers:
*Manage Web-based security
*Implement Forms Authentication
*Work with Forms Authentication in the raw
*Work with ASP.NET login controls to make writing login pages painless
*Work with ASP.NET role-based authorization
This tutorial covers managing access to your ASP.NET application. Web site security is a major concern for most enterprises. Without any means of securing a site, the Web site can expose areas of your enterprise you may not want exposed. We'll take a quick look at what security means when it comes to Web applications. Then we'll look at various services available within ASP.NET for authenticating and authorizing users.
The Application and HTTP Modules ASP.NET / General Development
This tutorial covers working with application state and application-wide events within your ASP.NET application. In normal desktop applications, the notion of a global meeting place for various parts of an application is well-understood.
Your first ASP.NET Page. ASP.NET / Getting Started
ASP.NET is an exceptionally remarkable technology for building web applications. We begin exploring ASP.NET pages with this first article. In this article we'll learn :
* From where to download ASP.NET premium edition?
* The installation process.
* Developing your first ASP.NET page.
* Running and testing your ASP.NET page.
Web Application Basics ASP.NET / Getting Started
This tutorial covers the fundamentals of building a Web-based application. Unlike the development of most desktop applications, in which most of the parts are available locally (as components on the user's hard disk drive), developing a Web application requires getting software parts to work over a widely distributed network using a disconnected protocol. The technologies underlying ASP.NET have been around for a long time. Of course ASP.NET makes use of this technology underneath, while making it very approachable at the same time.
Accessing MySQL Database with ASP.NET ASP.NET / .NET and Databases
In this step by step tutorial we will learn how to obtain, install, configure and run MySQL database on Windows. We will then move on to create a table in MySQL database, populate this table with some records and then display those records in the browser using an ASP.NET page.
Connecting to a SQL database from ASP .NET I ASP.NET / .NET and Databases
This is part I of the tutorial that teaches you how to connect to a SQL database from ASP .NET using SQL Authentication. This part shows you how to set up MSDE for Mixed Mode and how to use Web Data Administrator to create databases and users.