VB.NET ASP.NET Option Compare Source Code | Option Compare Example Syntax
Get 5 Hours of FREE PREMIUM Videos:
LearnVisualStudio.NET Free Preview
“ I am a lifetime member of LearnVisualStudio.net and a Premium Plus member of dotNetVideos.net.
LearnVisualStudio.net is awesome because it grows in value each year as more videos are added.
dotNetVideos.net is also great because it focuses a lot on MS Certifications and practical interview questions.
”
- Wade Harvey (IdealProgrammer.com)
Premium (Not Free) Video Tutorials
Free Video Tutorials & Free Tools
OptionCompare Example Syntax VB.NET ASP.NET | OptionCompare | Source Code
Summary: – Illustrates using OptionCompare with Source Code Syntax Example in VB.NET ASP.NET.
*** 1. Download Source Code *** |
|---|
Download Source Code for All VB ASP.NET Examples in One Project – source code for hundreds of VB.NET ASP.NET examples neatly organized in a single project. Check back often to download the latest version of the project with even more code samples. |
*** 2. OptionCompare Syntax ***
Purpose:
Declares the default comparison method to use when comparing string data.
Syntax:
Option Compare { Binary | Text }
Option Compare { Binary | Text }
| Parameters | Description | Binary/Text | Binary – Optional – compares based on binary representation – case sensitive Text – Optional – compares based on text representation – case insensitive |
|---|
| Result Data Type | Description | comparisons | case sensitive if binary is specified; case insensitive if text is specified. NOTE: Option statement must appear in a file before any other source code statements |
|---|
*** 3. OptionCompare – Quick Example *** | TextBox1.Text = "A" = "a" ' Returns True when Option Compare Text is specified at top of page |
|---|
*** 4. OptionCompare – Full Example ***OptionCompare Example Output ScreenshotStep 1: Click on Visual Basic to Cut-n-paste code into OptionCompare.aspx.vb
Step 2: Click on XML to Cut-n-paste code into OptionCompare.aspx
Prerequistes:
Notes:
Instructions:
|
Related posts:
- Option infer,option strict,option compare,option explict in vb.net Sources : About.com, Google.com and my knowledge Back to the...
- VB.NET OptionCompare() – Code Sample Syntax Example VB.NET OptionCompare() - Code Sample Syntax Example...
- VB.NET ASP.NET Filter() Source Code Syntax Example VB.NET ASP.NET Filter() Source Code Syntax Example...
- VB.NET ASP.NET InStrRev() Source Code Syntax Example VB.NET ASP.NET InStrRev() Source Code Syntax Example...
- VB.NET ASP.NET Chr() Source Code Syntax Example VB.NET ASP.NET Chr() Source Code Syntax Example...
Related posts brought to you by Yet Another Related Posts Plugin.













































