Having issues where in my .aspx page I pass in a boolean variable (C#) to a javascript function that is expecting a boolean type.
BUt the C# variable returns True, and j
You could also do this.
myjavascript(<%=myBooleanVariableInCSharp ? "true" : "false" %>);
Try this:
myjavascript( <%= MyBooleanVariableInCSharp.ToString().ToLower() %> );
function toBool(s){
return s==="True";
}
var b = toBool("@csharpvariable.ToBoolean()");
The other answers are targeting the old version, before Razor
if you are using Razor then this is the solution
myjavascript( @MyBooleanVariableInCSharp.ToString().ToLower() );
if you need to do this often, just add this to the top of the javascript (or your js library file, etc.)
var True = true, False = false;
Then you code
myjavascript( <%= MyBooleanVariableInCSharp %> );
Would work just fine.
Another option if for whatever reason you don't want to use the variables is to write your javascript call like this:
myjavascript( '<%= MyBooleanVariableInCSharp %>'=='True' );