• home
  • forum
  • my
  • kt
  • download
  • this£º6/7 25records  total:175    start  Previous  Next  Last    goto:
    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.
    45 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:
    4 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.
    58 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.
    121 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...
    23 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#.
    10 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.
    7 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.
    7 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.
    12 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.
    47 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
    8 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
    7 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.
    5 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".
    11 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.
    39 times | category: [NET]
    ASP to ASP+ Migration
    ON: 2007-07-03 14:47:21
    Microsoft is set to release an exciting upgrade to ASP later in 2000. This is a major upgrade unlike the minor changes from ASP 2.0 to 3.0. Unlike past upgrades, however, this one will not be painless. When they designed ASP+, Microsoft had to make the hard decision occasionally to break backward compatibility in the interest of improved functionality and features. Before embarking on the inevitableâ
    10 times | category: [NET]
    Using ASP.NET Code-Behind Without Visual Studio.NET
    ON: 2007-07-03 14:44:00
    The author writes "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.
    17 times | category: [NET]
    Using CultureInfo to modify output
    ON: 2007-07-03 14:25:15
    Mostly we want to change output results of our applications to another culture setting. In this code sniplet we will format current date time for our culture settings.
    9 times | category: [NET]
    Generating Forms Authentication Compatible Passwords (SHA1)
    ON: 2007-07-03 14:24:42
    In this article we will take a quick look at two methods for creating SHA1 passwords for use on the web using .NET. It is dangerous to store passwords anywhere in plain text!! SHA1 gives a quick and easy way to encode a password into a non-human readable form. This means it is safer to store in a database, and should the database be viewed by anyone who shouldn't know the passwords, it will be much more difficult for them to work out what a user's password is.
    16 times | category: [NET]
    Submitting Web Form data from one ASP.NET page to another
    ON: 2007-07-03 14:21:39
    This article discusses different options you as a developer have in ASP.NET to send data from one ASP.NET page to another. Since you cannot use ASP.NET Web Controls (System.Web.UI.WebControls) in such a scenario (which only allow posting back of data to the same page), this article discusses other ways like using HttpContext object.
    155 times | category: [NET]
    ASP.NET Website Programming: Problem - Design - Solution
    ON: 2007-07-03 14:12:03
    Sample chapter from "ASP.NET Website Programming: Problem - Design - Solution" on deploying the web site. Describes in detail how you should deploy your site once you've finished it, discusses deployment of database and application components separately.
    14 times | category: [NET]
    How to determine what server is given web site running on using ASP.NET?
    ON: 2007-07-03 13:59:44
    This comprehensive tutorial will walk you step-by-step to create a single ASP.NET page by which you'll be able to retrieve the server name of any given web site. Explains all the code in detail. Very useful.
    8 times | category: [NET]
    Sending Mass E-Mails ( Newsletter ) using ASP.NET.
    ON: 2007-07-03 13:58:31
    This is part II of a series of articles in which we'll learn how to send mass e-mails ( both text and HTML ) to a list of subscribers using ASP.NET. We'll also learn what are validation controls and how they can help us validate user input.
    63 times | category: [NET]
    No ActiveX Server Registration Needed with ASP.NET
    ON: 2007-07-03 13:51:59
    Need to create a wrapper for ActiveX and use it in ASP.NET? The advantage is these wrappers don't require registration of ActiveX on server. Just copy it, allowing for easy deployment on remote servers. Even run ActiveX on shared hosting.
    4 times | category: [NET]
    File Uploading with ASP.NET
    ON: 2007-07-03 13:47:16
    A comprehensive tutorial on uploading files to server hard disk using built-in ASP.NET server controls. Describes how to upload more than one file? how to upload only image files? how to retrieve other form non-binary field values? how to view and delete files uploaded on the server? how to force user to download a file without viewing it? how to expose correct file name to the user browser instead of a generic file.aspx? how to retrieve correct content-type for the file from system registry? how to set/unset max file upload size limit per folder of your application?
    1396 times | category: [NET]
    this£º6/7 25records  total:175    start  Previous  Next  Last    goto:

    Category

      NET (175)