Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
VB VB (1648)
VB.net VB.net (736)
C# C# (15)
ASP.net ASP.net (779)
ASP ASP (41)
VC++ VC++ (25)
PHP PHP (0)
JAVA JAVA (4)
JScript JScript (5)
  Database
» SQL Server (708)
» ORACLE (5)
» MySQL (0)
» DB2 (0)
Automation
» C/C++/ASM (11)
» Microcontroller (1)
» Circuit Design (0)
OS/Networking
» Networking (5)
» Unix/Linux (1)
» WinNT/2k/2003 (8)
Graphics
» Flash (0)
» Maya (0)
» 3D max (0)
» Photoshop (0)
Links
» ASP.net (2)
» PC Interfacing (1)
» Networking (4)
» SQL Server (4)
» VB (23)
» VB.net (4)
» VC (3)
» HTML/CSS/JavaScript (10)
Tools
» Regular Expr Tester
» Free Tools

(Page 21 of 26) 779 Result(s) found 

 

ShowImage - Output an image as a binary stream to the Response object
Total Hit (1505) «code LangId=2»' Output an image as a binary stream to the Response object Sub ShowImage(ByVal bmp As Bitmap) ' Clear current content and set returned content type HttpContext.Current.Response.Clear() HttpContext.Current.Response.ContentType = "image/jpeg" ' Save to the Response ....Read More
Rating
Implementing a two-way sorting for the DataGrid control
Total Hit (2606) DataGrid's sorting functionality is not automatic, the control takes care of "just" rendering the column headers as hyperlinks, and gives you the ability to handle the click on those links, by means of the SortCommand event. Then you manually sort the records (by means of a new DataView from an exis ....Read More
Rating
IsClientScriptEnabled - Checking if the client script support is requested and possible
Total Hit (2537) If you develop a custom control and want to give the option to output client-side javascript code, you'll likely have a EnableClientScript that allows the developer to specify whether the js code will be generated or not. However, before generating and outputting the js, you should also check whethe ....Read More
Rating
DownloadFile - Send a file to the client browser
Total Hit (2734)
Rating
This is a link to a different site On The Care and Handling of Cookies
Total Hit (784) Everything you ever wanted to know about ASP.NET Cookies but were too afraid to ask.
Rating
This is a link to a different site Using Active Directory In ASP.NET - Dump Schema Information
Total Hit (2417) An article on using System.DirectoryServices classes in ASP.NET
Rating
This is a link to a different site Deploying ASP.NET Applications - Part 1
Total Hit (698) Before looking at the different steps involved in setting up and deploying an ASP.NET Web application, it is important to understand the difference between Setup and Deployment. Setup is an application or process that allows you to package up your application into an easy-to-deploy format, which can ....Read More
Rating
This is a link to a different site An Extensive Examination of Web Services: Part 5
Total Hit (1716) Takes an in-depth look at XML serialization, which is the process of converting a data type, such as an integer, array, or custom class, into its XML representation, and back again. Every time a message is passed to or from a Web service, XML serialization transpires. ....Read More
Rating
This is a link to a different site Graphics on the Fly Directly from ASP.NET Server Control without .ASPX page
Total Hit (939) This is a simple method to display a custom drawn graphic on the fly without referencing an .aspx page.
Rating
This is a link to a different site Performing DataBase Entry
Total Hit (663) To illustrate record entry in to a SQL Database
Rating
This is a link to a different site Separating Code from Content in ASP.NET Pages via Code-Behind
Total Hit (568) ASP.NET web forms can be logically divided into two sections: the user interface (UI) components and the code for the page. The user interfaces comprises HTML and ASP.NET controls. The code programmatically interacts with the UI elements.
Rating
This is a link to a different site How to create customized Pagers for ASP.NET applications
Total Hit (648) Demonstrate how to create custom pagers that can attahced to a DataGrid.
Rating
This is a link to a different site Changing Target Web Service At Runtime
Total Hit (808) While developing clients for web services, we typically add a web reference to the web service by specifying URL of the .asmx file. Adding a web service in VS.NET generates required proxy object. However, it may happen that after adding the web reference the web service is moved to some other locati ....Read More
Rating
This is a link to a different site BetterCalendar WebControl
Total Hit (626) replacement for the System.Web.UI.WebControls.Calendar control.
Rating
This is a link to a different site Forensic Log Parsing with Microsoft's LogParser
Total Hit (892) Investigating a web-based intrusion can be a daunting task, especially when you have no information other than knowing it was web-based. It is easy to waste precious time digging through megabytes, perhaps even gigabytes, of log files trying to locate suspicious activity. Often this search turns up ....Read More
Rating
This is a link to a different site How to Read and Write a Cookie
Total Hit (893)
Rating
This is a link to a different site A simple progress bar web user control
Total Hit (969) Lightweight HTML table based (no image) progress bar
Rating
This is a link to a different site Handling Errors
Total Hit (860) «LI» Customizing Error Pages «LI» Handling Errors Programmatically «LI» Writing to the Event Log «LI» Section Summary
Rating
This is a link to a different site ASP.NET Graphical Page Hit Counter
Total Hit (962) In this example, we will create a web page which will track and display the hit counts for the web site. ASP developers must be familiar with a similar technique used to track the hit counts in classic ASP web pages.
Rating
This is a link to a different site Sort Method for an ASP.NET DropDownList
Total Hit (629) This code will show you how to implement a sort feature on an ASP.NET DropDownList control.
Rating
This is a link to a different site compile components without having to use a compiler
Total Hit (730) ability to compile components without having to use a compiler and or push a compiled component on the server. It completely slipped my mind that we already have support for this built-in to the pre-release.
Rating
This is a link to a different site Internal Site Search Engine
Total Hit (620) Site Search Engine searches an entire page and also dynamic pages for matching keyword(s) or a phrase and will count how many times the keyword(s) or phrase are found on the page, and displays the results with the highest matches first.
Rating
This is a link to a different site Credit Card Validator control for ASP.NET
Total Hit (810) Article outlining how to create a credit card validator control fully derived from BaseValidator.
Rating
This is a link to a different site Creating a RollOver Button Server Control
Total Hit (924) Recently an individual I am beginning to train in ASP.NET emailed me and asked if there was an easy way to provide roll-over buttons in an ASP.NET Web page. Roll-over buttons, which you'll find on a number of Web sites, are buttons that display a default image whenever the mouse is not hovered above ....Read More
Rating
This is a link to a different site Create and Read Cookies
Total Hit (900) In this article we will see how to determine if a user's browser accepts cookies, how to create both session and persistent cookies, how to read cookies, and how to store and read cookies with sub-keys (cookie dictionary). First, the .aspx page, which is mostly labels and explanations of what the pr ....Read More
Rating
This is a link to a different site View State in ASP.Net
Total Hit (977) This articles discuss about the view state in ASP.net
Rating
This is a link to a different site An Extensive Examination of the DataGrid Web Control: Part 15
Total Hit (945)
Rating
This is a link to a different site Using the HttpBrowserCapabilities Class
Total Hit (640) There are any number of reasons to need to know certain capabilities of your user's browser. The HttpBrowserCapabilities Class provides you with many of the properties of the user's browser allowing you to adjust your presentation accordingly
Rating
This is a link to a different site Creating Reports with SQL Reporting Service and Visual Studio .NET
Total Hit (662) Creating Reports with SQL Reporting Service and Visual Studio .NET
Rating
This is a link to a different site Tracking Session Changes using HttpModule
Total Hit (1001) A custom HttpModule to display the session data before and after a page request at the end of the page ouput.
Rating


(Page 21 of 26) 779 Result(s) found  1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26

Recommanded Links

 

Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.