Kira
Kira

Reputation: 628

What's the difference between the property "ID" and "BehaviorID" in ASP.NET?

Both seems to have the same functionality. What's the main difference, anyway?

Upvotes: 1

Views: 2574

Answers (1)

maple_shaft
maple_shaft

Reputation: 10463

The ID is the unique server side identifier of your ASP.NET control. The behaviorID is an optional client side javascript identifier that can be specified on Extender controls. They are completely different.

Upvotes: 3

Related Questions