• home
  • forum
  • my
  • kt
  • download
  • this:3/5 25records  total:110    Start  Previous  Next  Last    goto:
    Binding a DataGrid to an XML file
    ON: 2007-07-04 14:14:42
    This tutorial will show you how to bind a DataGrid to a simple XML file so you can display the values as rows and the tags as columns
    5 times | category: [NET]
    Validate using RequiredFieldValidator
    ON: 2007-07-04 13:57:43
    In this tutorial you'll find out how to validate a TextBox and RadioButtonList control on a webform using RequiredFieldValidator, which will show a warning and stop the submission of the form if a required field has no value.
    10 times | category: [NET]
    Performing custom validation
    ON: 2007-07-04 13:55:58
    Demonstrates how to use custom validation on a form by checking to see if a string in a TextBox is not the same with a string from an array (or database), case in which it displays 'This name is already taken'.
    1 times | category: [NET]
    Using server side includes
    ON: 2007-07-04 13:49:39
    Demonstrates how to use server side includes in ASP .NET by including User Control files in Web Forms.
    3 times | category: [NET]
    Connecting to a SQL database from ASP .NET I
    ON: 2007-07-04 13:44:10
    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.
    19 times | category: [NET]
    Connecting to a SQL database from ASP .NET II
    ON: 2007-07-04 13:38:32
    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.
    4 times | category: [NET]
    Using the DataList control
    ON: 2007-07-04 13:34:09
    This tutorial covers the creation of a DataList control to retrieve records from a database. Also shows you how to make the DataList esthetic by changing its attributes.
    11 times | category: [NET]
    How to bind a DataGrid to an array
    ON: 2007-07-04 13:32:36
    It simply shows how to bind a DataGrid to an array using C# code
    3 times | category: [NET]
    Connect to MySQL from ASP.NET
    ON: 2007-07-04 13:32:03
    Tutorial explaining how to connect to MySQL from ASP.NET.
    3 times | category: [NET]
    Disable browser caching in ASP.NET
    ON: 2007-07-04 13:27:42
    Tutorial explaining how to disable browser caching in ASP.NET.
    6 times | category: [NET]
    Create HTML Image Maps Dynamically With .NET
    ON: 2007-07-04 13:24:01
    I've been working on a financial reporting project lately and came upon the idea of bringing our charts from ChartFX.NET to life. The idea being that we could dynamically review each pixel's color in the chart in order to generate an HTML image map on the fly. This would enable us to apply supporting documentation in the form of links or JavaScript functions to perform some sort of action when the user moves their mouse over the chart or clicks a section of it.
    9 times | category: [NET]
    How To Use Refactoring To Handle Multiple Versions of Classes
    ON: 2007-07-04 13:22:38
    Recently, I had a requirement to put together a website that deals with taking somewhat elaborate financial surveys. While the questions and answers themselves are good candidates for being database driven, there were a large number of nuiances ranging from UI items, business rules, and calculations that just didn't fit into a database driven strategy. With this in mind, my initial strategy was to create version specific classes and reference them in version specific ASP.NET pages. Of course, this accomplished the initial requirement. However, whenever a new version needs to be implemented, I had to copy all of the ASP.NET pages and modify the references to the appropriate version specific class name. Refactoring provides a better alternative and here's how:
    1 times | category: [NET]
    Building XML Web Services Using C# and ASP.NET
    ON: 2007-07-04 10:18:32
    The term "web service" has been used quite frequently lately: you hear people saying how good web services are and how they will dominate the future of software development, but what exactly are web services and how can we create them? This article shows us how to build two web services and also unravels all of the lingo surrounding web services.
    2 times | category: [NET]
    Hosting ASP.NET - Running an All-Managed HTTP Server
    ON: 2007-07-04 10:00:22
    Within this paper, we examine how to host the ASP.NET runtime (called the HttpRuntime stack, or just HttpRuntime) by looking at the source code to an all-managed HTTP server Microsoft provides, codenamed Cassini. Using Cassini as a guide, we will examine hosting, configuration, and the execution path. Lastly, we will consider what sort of implications this has for enterprise projects both behind and in front of the firewall.
    8 times | category: [NET]
    Handling cookies in ASP .NET
    ON: 2007-07-04 09:59:14
    How to create a cookie, how to get the value stored in a cookie, set the lifetime, path and domain for a cookie, edit a cookie, delete a cookie, remove subkeys from a cookie...
    7 times | category: [NET]
    Introduction to Microsoft's .NET Platform
    ON: 2007-07-03 15:30:59
    This article briefly describes Microsoft.NET, ASP.NET, C#, VS.NET, VB.NET, ADO.NET, XML Web Services, VISUAL J#.
    4 times | category: [NET]
    Database Access Within an Assembly
    ON: 2007-07-03 15:30:08
    We can easily connect a database server within an assembly. After we compile this source code you can access your database provider. In tis source code I have used SQL Server.
    2 times | category: [NET]
    Counting Records In ASP.NET
    ON: 2007-07-03 15:27:02
    The following source code displays count of all records in a database. We will use a data command to execute an SQL statement that will return with count of records. Source code written in Visual Basic.NET can easily modify to work in an application.
    2 times | category: [NET]
    Creating Dropdown list control from Datasource
    ON: 2007-07-03 15:25:37
    We will create a custom dropdown conrol using a datasource. This code provides us to fill a dropdrown list using a datasource. This code also displays us ASP.NET is easier than classical ASP to generate custom controls.
    4 times | category: [NET]
    Hierarchical Relationships Without DataRelation Object in ADO.NET
    ON: 2007-07-03 15:19:14
    At my place of employment, I work a great deal with somewhat complex hierarchical data as part of our measurement and analysis software. Thus, recursion and I have become rather close friends over the last few years. While rewriting an old website, I needed to turn a set of four relational tables into a hierarchical data structure. The top level table held self-referencing relationships as well as child relationships to table 2. Tables 3 and 4 were your basic "run of the mill" child tables up through table2.
    12 times | category: [NET]
    Generating Text Images on the Fly with ASP.NET
    ON: 2007-07-03 15:17:54
    Have you ever needed to have an image of some text generated dynamically on the fly? There are tons of possible applications for this type of thing, but prior to ASP.NET it was a relatively difficult thing to do. This article explains how to generate text images on the fly using ASP.NET. Source code available for download
    0 times | category: [NET]
    How to use GetDirectories
    ON: 2007-07-03 15:15:55
    While working with file system, sometimes we must list all directories in a folder. This sample shows us how to list all directories in a folder. Source code written in Visual Basic.NET can easily modify to work in an application
    2 times | category: [NET]
    Generating Serial Code For Your Applications
    ON: 2007-07-03 15:09:52
    In this article we will generate a random serial code for our applications. The script will generate a similiar serial code to use in a real application.
    0 times | category: [NET]
    Gate to Delegates in VB.NET
    ON: 2007-07-03 15:00:45
    This article explains what are "Delegates"? And what is their role in .NET framework. The author uses VB.NET code to provide working examples of "Delegates".
    4 times | category: [NET]
    Integrating ASP.NET XML Web Services with Classic ASP Applications
    ON: 2007-07-03 14:51:57
    This article examines how to can create a Web service in .NET and then utilize it from a classic ASP page on your Web server, thereby providing an API that can be utilized by both your ASP.NET Web pages and classic ASP pages.
    6 times | category: [NET]
    this:3/5 25records  total:110    Start  Previous  Next  Last    goto:

    Category

      NET (110)