Hello developers,
I bind my TextBox control specyfying a format stored in my application
global ApplicationCont ext object - it has a static string CurrencyFormat
property.
The problem - this works fine:
Text='<%# Eval("Price", ApplicationCont ext.CurrencyFor mat) %>'
but this does not:
Text='<%# Bind("Price", ApplicationCont ext.CurrencyFor mat) %>'
(Parser Error Message: A call to Bind was not well formatted)
Could anyone suggest a solution?
The objective: store format strings globally.
Thank you for any hints.
Thomas Jastrzebski
I bind my TextBox control specyfying a format stored in my application
global ApplicationCont ext object - it has a static string CurrencyFormat
property.
The problem - this works fine:
Text='<%# Eval("Price", ApplicationCont ext.CurrencyFor mat) %>'
but this does not:
Text='<%# Bind("Price", ApplicationCont ext.CurrencyFor mat) %>'
(Parser Error Message: A call to Bind was not well formatted)
Could anyone suggest a solution?
The objective: store format strings globally.
Thank you for any hints.
Thomas Jastrzebski
Comment