16,003,404 members
Sign in
Sign in
Email
Password
Forgot your password?
Sign in with
home
articles
Browse Topics
>
Latest Articles
Top Articles
Posting/Update Guidelines
Article Help Forum
Submit an article or tip
Import GitHub Project
Import your Blog
quick answers
Q&A
Ask a Question
View Unanswered Questions
View All Questions
View C# questions
View C++ questions
View Javascript questions
View Visual Basic questions
View .NET questions
discussions
forums
CodeProject.AI Server
All Message Boards...
Application Lifecycle
>
Running a Business
Sales / Marketing
Collaboration / Beta Testing
Work Issues
Design and Architecture
Artificial Intelligence
ASP.NET
JavaScript
Internet of Things
C / C++ / MFC
>
ATL / WTL / STL
Managed C++/CLI
C#
Free Tools
Objective-C and Swift
Database
Hardware & Devices
>
System Admin
Hosting and Servers
Java
Linux Programming
Python
.NET (Core and Framework)
Android
iOS
Mobile
WPF
Visual Basic
Web Development
Site Bugs / Suggestions
Spam and Abuse Watch
features
features
Competitions
News
The Insider Newsletter
The Daily Build Newsletter
Newsletter archive
Surveys
CodeProject Stuff
community
lounge
Who's Who
Most Valuable Professionals
The Lounge
The CodeProject Blog
Where I Am: Member Photos
The Insider News
The Weird & The Wonderful
help
?
What is 'CodeProject'?
General FAQ
Ask a Question
Bugs and Suggestions
Article Help Forum
About Us
Search within:
Articles
Quick Answers
Messages
Comments by r verma (Top 7 by date)
r verma
7-Apr-11 23:04pm
View
In case you do not want to use AJAX ToolKit as suggested in last reply then you have to write traditional code like when user will select country from first drop down then you will again query for fetching cities corresponding to that country and populate second drop down.
You'll write complete logic through SelectedIndex change event of first drop down and may prefer an AJAX update panel.
r verma
7-Apr-11 22:38pm
View
In above code you are trying to find UserControl with 'Label' with it's actual class name which will not work. Use 'UserControl' instead of 'LabelUserControl'. Also to find second UserControl do not directly use 'FindControl' instead use this.Page.FindControl like what I wrote in my last reply.
r verma
7-Apr-11 22:30pm
View
Deleted
In above code you are trying to find UserControl with 'Label' with it's actual class name which will not work. Use 'UserControl' instead of 'LabelUserControl'. Also to find second UserControl do not directly use 'FindControl' instead use this.Page.FindControl like what I wrote in my last reply.
r verma
23-Feb-11 22:49pm
View
Deleted
Reason for my vote of 3
Nice tip to take care while using script.
r verma
23-Feb-11 22:46pm
View
Deleted
Reason for my vote of 3
Nice tip to take care while using script.
r verma
23-Feb-11 22:43pm
View
Deleted
Operator Use
== returns true if values of variables are equal
=== returns true if values and variable types are same
!= true if values are not equal
!=== true if values and variable types are not same
These are operators provided in Javascript for comparison. Nice tip to take care while using script.
r verma
22-Feb-11 20:18pm
View
Deleted
Thanks for the feedback. This trick is not for an experienced developer that's why at top its intentional audiences are also mentioned.
Show More