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 1 of 4) 113 Result(s) found 

 

Create your own Image/Link extractor tool using Regular Expressions
Total Hit (3165) This is a very simple code to present use of Regular expression to solve some complex text operation which is kinda impossible using inbuilt string functions available in Visual Basic. For More information Visit the following MSDN article «a href='http://msdn.microsoft.com/library/en-us/dnclin ....Read More
Rating
Regular Expressions in T-SQL
Total Hit (3941) For this solution we need SQL Server 2000 or higher. Also we need to make sure we have the VBScript.RegExp library on our computer. This should come with most Windows 2000 servers, in the Windows Scripting package. If you are using this on an older version of Windows, you will probably have to downl ....Read More
Rating
InstrTbl - Search a string for any character in a table
Total Hit (3578) «Code LangId=2» ' If INCLUDE is True or is omitted, return the first occurrence of a character ' in a group ' or -1 if SOURCE doesn't contain any character among those listed in TABLE. ' If INCLUDE is False, return the first occurrence of the character in SOURCE ' that does not appear in TABL ....Read More
Rating
ValidateVBName - Check a variable's or procedure's name
Total Hit (3354)
Rating
Search and replace string with HTML formatting in Case-[In]sensitive mode using regular expression.
Total Hit (3299) Folloing function will Search specified string and make it Bold in HTML output. «Code LangId=2»Function BoldSearch(ByVal strInput As String, ByVal strSearch As String) As String BoldSearch=Regex.Replace(strInput, strSearch, "<B>" & "$&" & "</B>", RegexOptions.IgnoreCase) End Function«/Code» ....Read More
Rating
This is a link to a different site Regular Expressions in ASP.NET
Total Hit (981) Regular expressions are an extremely useful tool for working with text. Whether you need to validate user input, search for patterns within strings, or reformat text in powerful ways, regular expressions can help.
Rating
This is a link to a different site Common Applications of Regular Expressions
Total Hit (1860) Regular Expressions (for those not yet acquainted with them) provide a way of matching patterns of strings that may be simple or extremely complicated and they do it in a very efficient manner. For an introduction to regular expressions in ASP be sure to read: An Introduction to Regular Expressions ....Read More
Rating
This is a link to a different site Regular Expressions in .NET
Total Hit (4444)
Rating
This is a link to a different site Client/Server-side ASP.NET Credit Card Validation Control
Total Hit (781) Article discussing new version of ASP.NET Credit Card Validator, including both server and client-side checks and VS.NET designer support.
Rating
This is a link to a different site Allowing for User Mischief - A Bad Word Filter... (aka removing naughty words via ASP.NET, a user control, XML and regular exressions)
Total Hit (1010) This article presents an improved core implementation of a solution to a particular problem I come across occasionally: detection and/or removal of suspect words from user supplied text on web sites.
Rating
This is a link to a different site Microsoft Beefs Up VBScript with Regular Expressions
Total Hit (1220) In this article, I'll describe all objects related to VBScript Regular Expressions, summarize common regular expression patterns, and provide some examples of using regular expressions in code.
Rating
This is a link to a different site A 'Print This Page' Script Using the MS-XMLHTTP object and Regular Expressions
Total Hit (2552) This article deals with two not-so-commonly discussed topics. The first is using Microsoft's XMLHTTP component to perform an HTTP request. To learn more about how to use XMLHTTP for this purpose, be sure to check out this FAQ. This article also utilizes regular expressions to remove delimited chunks ....Read More
Rating
This is a link to a different site Regular expressions to validate different formats of Date / time.
Total Hit (3831) This all are the common regular expressions to validate date/time
Rating
This is a link to a different site URL Rewriting with ASP.NET
Total Hit (2688) Demonstrates the use of regular expression-based URL Rewriting, similar to mod_rewrite with ASP.NET
Rating
This is a link to a different site Regular expressions to validate URL,URI,URN
Total Hit (795) This all are the common regular expressions to validate different URL, URI or URN
Rating
This is a link to a different site Browser Detection using ASP.NET
Total Hit (681) Using and updating your machine.config file to better detect browser type in ASP.NET
Rating
This is a link to a different site Single Control Validation Solution
Total Hit (2503) A single control to validate a .NET Web Form.
Rating
This is a link to a different site Utilize Built-in Validation Controls on Your Web Forms
Total Hit (1003) The following program demonstrates the use of several of the .Net validation controls. The first two text boxes utilize the RequiredFieldValidator control. There is no particular reason for these fields to be required - they just demonstrate use of the control. The use of RequiredFieldValidators is ....Read More
Rating
This is a link to a different site Powerful New T-SQL Syntax Gives SQL Server a Programmability Boost
Total Hit (2382) The T-SQL language in the upcoming version of SQL Server will provide more power and flexibility than previous versions. Additions and enhancements include error handling with the TRY/CATCH construct, SNAPSHOT isolation, and WAITFOR enhancements. Also important are the BULK rowset provider, common t ....Read More
Rating
This is a link to a different site Working DataGrid TemplateColumns and Binding these Columns
Total Hit (1153) Working DataGrid TemplateColumns and binding these columns with differents objects (TextBox, DropDownList, CheckBox, Image and others).
Rating
This is a link to a different site Data Sanitization - Reducing Security Holes in an ASP Web Site
Total Hit (4430) ASP is a great Web development technology that allows for rapid development of data-driven Web sites. However, problems can arise, however, when developers "go live" with code that contains potential security holes due to rushing out poor code, or not knowing the exploits that exist. In this article ....Read More
Rating
This is a link to a different site Screen Scraping with C# for ASP.NET
Total Hit (638) Using C# to scrape content from a third party site and present in on an ASP.NET webpage
Rating
This is a link to a different site XSD Schemas: An Introduction
Total Hit (655) The schema specifies the order of tags in the XML document, indicates fields that are mandatory or that may occur different numbers of times, gives the datatypes of fields and so on. The schema importantly is able to ensure that data values in the XML file are valid as far as the parent application ....Read More
Rating
This is a link to a different site SSIS Send Mail Task Change SMTP Port
Total Hit (1070) If you need to change the SMTP Port you can't use the 'Send Mail Task' This article will show you alternate way.
Rating
This is a link to a different site Display Multiple reports using single ReportViewer control
Total Hit (1108) It is easy to get the ReportViewer Control to report off of a DataSet that is set during design time. But what if you want to use code to cause one ReportViewer control to display many totally different reports using your own O/R mapper collection instead? It is not easy to see how to do this, but i ....Read More
Rating
This is a link to a different site Customizing DataBinded Output in Templates
Total Hit (922)
Rating
This is a link to a different site Business Case Solutions Using MDX
Total Hit (865) The purpose of the Multidimensional Expressions (MDX) language is to make access to multidimensional data more concise and efficient. However, because MDX reflects the natural complexity of multidimensional data structures, simple business questions may sometimes require complex MDX solutions. ....Read More
Rating
This is a link to a different site RDBMS Performance Tuning Guide for Data Warehousing
Total Hit (1769) This performance tuning guide is designed to help database administrators and developers configure Microsoft® SQL Server™ 2000 for maximum performance and to assist in determining causes of poor performance of relational databases, including those used in data warehousing. It also provides guideline ....Read More
Rating
This is a link to a different site Bryan's WebLog for Reporting Services
Total Hit (1019) Using an External DataSet with Reporting Services Reports Writing Custom Code for Reporting Services Reports GetReportParameters method Welcome Tudor to Reporting Services Blogging Reporting Services Service Pack 1 Now Available! And many more.... ....Read More
Rating
This is a link to a different site Exporting SQL Data as XML
Total Hit (3228) In my last article, Importing XML into SQL Server 2000, we looked at various techniques to import the XML data into SQL Server. To complement that, this article will focus on some of the methods that you can use to export relational SQL data to the XML format. More specifically, we'll explore th ....Read More
Rating


(Page 1 of 4) 113 Result(s) found  1 2 3 4

Recommanded Links

 

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

© 2008 BinaryWorld LLC. All rights reserved.