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 2 of 7) 194 Result(s) found 

 

GetPostbackControl - Return a reference to the control that caused the last postback
Total Hit (2571)
Rating
GetWebConfigCustomKeyValue - Return and cache a custom key's value from Web.Config
Total Hit (1375)
Rating
IsLanguageSupported - Detecting whether a language is supported by the browser
Total Hit (2648)
Rating
RedirectFromLoginPageEx - Specify how many days the auth cookie lasts
Total Hit (1289)
Rating
ShowImage - Output an image as a binary stream to the Response object
Total Hit (1507) «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
ShowMessageBox - Showing a client-side message box at the next page load
Total Hit (1430)
Rating
This is a link to a different site Getting Started With ASP.NET : Sample Chapter from Beginning ASP.NET using VB.NET
Total Hit (718) In this first chapter we'll be mainly concerned with ASP.NET's installation process. We'll start with a quick introduction to the world of web servers, dynamic web pages, and a little bit about what ASP.NET is, but what we really aim to achieve is to get you running a fully functional web server, wi ....Read More
Rating
This is a link to a different site Read chapter 1 from Professional ASP.NET
Total Hit (710) This chapter gives a whistle-stop tour of ASP.NET. It begins with a guide to how to install .NET, and how to configure and run the samples applications. Next it looks at Visual Studio.NET and gives a quick overview of how ASP.NET applications can be created using it. It then moves on to discuss the ....Read More
Rating
This is a link to a different site Winsock API - Step by step tutorial for the VB developers
Total Hit (4899) We've added three new examples for the tutorial that demonstrate how to call the name resolution Winsock API functions: «li»How to get an IP-address of the remote host «li»How to get name and IP address of the local system «li»How to get host name by IP address ....Read More
Rating
This is a link to a different site How ASP.NET Web Pages are Processed on the Web Server
Total Hit (544) Have you ever wondered, precisely, what happens on the Web server when a request for an ASP.NET Web page comes in? How does the Web server handle the incoming request? How is the HTML that is emitted to the client generated? What mechanisms are possible for us developers to work with an incoming req ....Read More
Rating
This is a link to a different site Paging In ASP.NET
Total Hit (560) When making the transition from ASP to ASP.NET, you will discover that paging through database records has become both remarkably simple and more difficult at the same time. The DataGrid control has made it a breeze to create a Web page that allows the user to page through the records of a database ....Read More
Rating
This is a link to a different site FAQ: How can I read the contents of a text file one line at a time?
Total Hit (578)
Rating
This is a link to a different site How can I read the entire contents of a text file into a string?
Total Hit (552)
Rating
This is a link to a different site Reading and Writing Text Files with the .NET Framework
Total Hit (695) Ideally, all persistent data should be stored in a database, but oftentimes Web developers find themselves using plain old text files for some kind of persistent storage. There are usually better alternatives, but since this technique is still used quite a bit, it is worthwhile to discuss how to rea ....Read More
Rating
This is a link to a different site Sorting An Array Using Array.Sort()
Total Hit (550)
Rating
This is a link to a different site Performing Browser Detection Using ASP.NET
Total Hit (605)
Rating
This is a link to a different site When using the FSO, my ASP page tends to "hang", but doesn't report any errors.
Total Hit (544)
Rating
This is a link to a different site Displaying Performance Monitor Information through an ASP.NET Web Page
Total Hit (568)
Rating
This is a link to a different site Uploading Files in ASP.Net Using C# and Saving to the Server
Total Hit (534) This sample will show you how to create an ASP.Net page to allow a user to upload a file, determine the type of file being uploaded, and save that file to the web server.
Rating
This is a link to a different site Using the Luhn Algorithm
Total Hit (512) Validate credit card numbers, Canadian Social Insurance Numbers, and other unique numbers using the Luhn algorithm.
Rating
This is a link to a different site Screen Scraping in ASP.NET
Total Hit (522) Screen scraping is a lot easier in .NET than it was in classic ASP where you had to use the infamous INET.DLL. The System.Net namespace provides all the methods we need to perform screen scraping in .NET. I will show you the code without a great deal of explanation. In this first example program we ....Read More
Rating
This is a link to a different site Popup - The .NET Way
Total Hit (531) In this article we are going to build a method and an overload of the same which will open a popup window without using javascript or VB code in the .aspx page.
Rating
This is a link to a different site Windows Server 2003 for ASP.NET Developers
Total Hit (742) This article looks at Windows Server 2003 and why you might want to consider upgrading your servers to use the product at this point in time through an examination of what new features the product provides and what the upgrade consequences might be for your ASP.NET applications. As apart of this we ....Read More
Rating
This is a link to a different site Forms Authentication Against SQLServer
Total Hit (520) In this article I'll cover how we can extend the inbuilt facilites of ASP.NET a little to provide authentication against a SQLServer database. Forms authentication is the method we shall focus on, in particular integrating a SQLServer authority.
Rating
This is a link to a different site ViewState
Total Hit (568) ViewState is the mechanism by which page state (information) is maintained between page post backs, i.e. a web form is submitted by the user, this same page performs some processing and perhaps presents further information to the user.
Rating
This is a link to a different site Exam 70-305 Hints and Tips
Total Hit (572) This 'article', for want of a better word, is a collection of hints and tips for the 70-305 Microsoft Certification Exam: Developing and implementing web applications with VB.NET and ASP.NET. Each entry addresses areas of knowledge known to be tested during versions of the exam but that are concerne ....Read More
Rating
This is a link to a different site Event Handling in ASP.NET
Total Hit (554) The ASP.NET model hides the programmer from some of the full complexities of event handling in VB.NET, as does the IDE of VS.NET so this article shall hopefully provide a little insight into what's available in the .NET framework.
Rating
This is a link to a different site Separating Code from Content in ASP.NET Pages via Code-Behind
Total Hit (569) 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 Globalization and Localization
Total Hit (517) The .NET Framework provides support for globalization and localization. Localization is the custumization of data and resources for specific 'locales' or languages. Whereas in pre-Internet days it wasn't unusual for an application to be designed for use in a single country, now an Internet applicati ....Read More
Rating
This is a link to a different site Comparing the Performance of Various Iteration Methods
Total Hit (515) When you have to iterate through large amounts of data, you can save significant time by choosing your iteration method carefully. Method #1: Enumeration Method #2: Indexing Method #3: Indirect Array Method #4: Direct Array Method #5: Pointer Math ....Read More
Rating


(Page 2 of 7) 194 Result(s) found  1 2 3 4 5 6 7

Recommanded Links

 

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

© 2008 BinaryWorld LLC. All rights reserved.