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 22 of 26) 779 Result(s) found 

 

Dynamically Build an Array using ArrayList
Total Hit (1697) «Code LangId=4»Dim Values as New ArrayList() Values.Add("Scott") Values.Add("Fred") Values.Add("Sam") Dim Names as String() Names = Values.ToArray(Type.GetType("System.String"))«/Code» Note that because ArrayList implements ICollection -- you can do standard foreach interation over it. ....Read More
Rating
Error : Could not open in Design view. Quote values differently...
Total Hit (2073) Sometimes you may get following error when you use double quotes in <ASP:XXXXX> tag «b»Could not open in Design view. Quote values differently...«/b» Solution : Try to remove double quotes e.g. <asp:HyperLink CssClass="codecat" id="Hyperlink3" runat="server" Text="<%# Datab ....Read More
Rating
a code snippet to loop through a user accounts properties.
Total Hit (2469)
Rating
Saving HTTP requests for better debugging
Total Hit (2589) The new SaveAs method of the Request object saves the current HTTP request to a file, which can be very useful for logging and debugging reasons. You should pass True to its second argument if you want to save HTTP headers as well: «Code LangId=4» Request.SaveAs "c:\lastrequest.txt", True «/Co ....Read More
Rating
This is a link to a different site Thumbnail Image Creation and Image format Conversion Utility
Total Hit (661) This code will convert an original image to a thumbnail without writing to the hard disk. You also have the option to save and to specify width and height of the thumbnail image through the QueryString.
Rating
This is a link to a different site Securing an ASP.Net application
Total Hit (5325) this article develops a reasonably secure login facility utilizing the inbuilt features of ASP.Net (forms based authentication). Also presented is an introduction to related security features and issues, in particular mentioning how security could be further improved by consideration of technologies ....Read More
Rating
This is a link to a different site Windows Authentication with Web Services
Total Hit (749) You can enable windows authentication for your web applications using web.config file. You need to set authentication mode to Windows in the <authentication> section. Additionally you need to set <authorization> section to deny anonymous access. Once you set these parameters in the web.config file t ....Read More
Rating
This is a link to a different site NoSpamEmailHyperlink: 5. Implementation
Total Hit (970) Simple examples to demonstrate the standard NoSpamEmailHyperlink control.
Rating
This is a link to a different site Dynamic Controls in ASP.NET
Total Hit (871)
Rating
This is a link to a different site A code snippet to count the number of records in a dataset.
Total Hit (1013)
Rating
This is a link to a different site Tracing Features of ASP.NET
Total Hit (740) If you were an ASP developer in past, you know how difficult it was to debug your applications. Commenting and un-commenting those Response.Write statements was a nightmare for most of the developers. ASP.NET simplifies the debugging and tracing process a lot. This in depth article takes you through ....Read More
Rating
This is a link to a different site Passing parameters to an ASP.NET page running in an IFRAME
Total Hit (588) How to pass parameters to an aspx page that is hosted within an IFrame. Also how to handle postback issues in a modal window.
Rating
This is a link to a different site Sniff Web Clients using ASP.NET
Total Hit (695) Using .Net framework web class one can sniff lots of information from the web clients.
Rating
This is a link to a different site An Extensive Examination of the DataGrid Web Control: Part 1 ( DataGrid Basics )
Total Hit (881)
Rating
This is a link to a different site Understanding How to Use XSL Transforms
Total Hit (762) Original abstract: XSLT, XPATH and how to apply the concepts in .NET. Examines the concept of transformation and how an XSLT stylesheet defines a transformation by describing the relationship between an input tree and an output tree. Continues to look at the structure of a stylesheet, its main sub-c ....Read More
Rating
This is a link to a different site Dynamically access a database through a Web Application
Total Hit (973) Using an ASP.NET Web application to access your database remotely
Rating
This is a link to a different site Yet, another ViewState viewer
Total Hit (4170) In the following lines, I'll show how to create a very simple viewer that displays the contents of the controls store in view state. It's NOT just a tree holding all the ViewState data as stored in __VIEWSTATE field, but a list of all the controls storing data in ViewState and the saved data. ....Read More
Rating
This is a link to a different site Dynamically Adding Controls to a Web Page
Total Hit (888) You may add controls to a web page dynamically as needed at run time rather than at design time. This short article shows you how.
Rating
This is a link to a different site Switching Between HTTP and HTTPS Automatically
Total Hit (644) An article on automatically switching between HTTP and HTTPS protocols without hard-coding absolute URLs.
Rating
This is a link to a different site Displaying Images from SQL Server database in ASP.NET DataGrid
Total Hit (784) ASP.NET DataGrid web control can be bound quickly with any database table like SQL server. For most of the data types all you need to do is to add a bound column and set its datafield property to the column name from the table. However, displaying image data type i.e. binary data is not that easy. I ....Read More
Rating
This is a link to a different site How To: Set Up Client Certificates
Total Hit (1082) IIS supports client certificate authentication. This How To shows you how to configure a Web application to require client certificates. It also shows you how to install a certificate on a client computer and use it when calling the Web application.
Rating
This is a link to a different site Administration page for a "Members only" section
Total Hit (677) This page assists in using a single subfolder for "members only" access, and in administering which users are allowed access. No database is required.
Rating
This is a link to a different site Including a DropDownListBox in an Editable DataGrid
Total Hit (574) The data choices for some database table columns are relatively fixed. Examples would be countries, states, and counties for instance. In these cases a dropdown list of fixed choices makes more sense than keyboard input where mistakes can be made easily. In an editable datagrid you can include dropd ....Read More
Rating
This is a link to a different site ASP.NET Query control
Total Hit (587) A declarative ASP.NET Query control with parameter support; this article offers examples of custom control parsing and provider-neutral database access
Rating
This is a link to a different site A quick guide to using nested repeaters in ASP.NET
Total Hit (630) Using nested repeaters in ASP.NET with an XML data store
Rating
This is a link to a different site Work with the DataGrid control?
Total Hit (534) «LI» Introduction to Server-Side Data «LI» Connections, Commands, and DataSets «LI» Accessing SQL-based Data «LI» Binding SQL Data to a DataGrid «LI» Performing a Parameterized Select «LI» Inserting Data in a SQL Database «LI» Updating Data in a SQL Database «LI» Deleting Data in a SQ ....Read More
Rating
This is a link to a different site User controls in ASP .NET
Total Hit (4551) In traditional ASP code reuse and encapulation was traditionally done using a combination of include files and web classes. While this worked reasonably well for business logic, it was always a little fiddly for visual components. For example, if you wanted to display a grid of data in many differen ....Read More
Rating
This is a link to a different site Add a Checkbox Control to the DataGrid Control
Total Hit (603) Add CheckBox to ASP.NET DataGrid control (VB.NET version).
Rating
This is a link to a different site XML/XSLT Dynamic Menu with ASP.NET
Total Hit (608) How to create a web menu which shows the current page.
Rating
This is a link to a different site Enhancing Inserting Data through the DataGrid Footer
Total Hit (897)
Rating


(Page 22 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.