Top "Eval" questions

eval is a function that allows a programmer to execute arbitrary code written in the same language, from a string variable within a code.

Error: Databinding methods such as Eval(), XPath(), and Bind() can only be used in the context of a databound control in repeater control

I am getting the following error Databinding methods such as Eval(), XPath(), and Bind() can only be used in the …

asp.net eval repeater
Javascript eval ReferenceError: is not defined

I need to dynamical create a variable off the value of a variable from an argument I am pulling in …

javascript eval referenceerror
How to unpack the contents of a JavaScript file?

You know how those packed js files look like, right? eval(function(p,a,c,k,e,d){ ... } ('obfuscated-string'.split(…

javascript eval unpack compression
eval to import a module

I can't import a module using the eval() function. So, I have a function where if I do import vfs_…

python eval
Specify scope for eval() in JavaScript?

is there any way I can execute eval() on a specific scope (but NOT global)? for example, the following code …

javascript scope eval
executing anonymous functions created using JavaScript eval()

I have a function and its contents as a string. var funcStr = "function() { alert('hello'); }"; Now, I do an eval() …

javascript eval
(1, eval)('this') vs eval('this') in JavaScript?

I start to read JavaScript Patterns, some codes confused me. var global = (function () { return this || (1, eval)('this'); }()); Here are my …

javascript eval
How to code a calculator in javascript without eval

So, I've searched high and low, and I can't find an answer to this. I've attempted it about three times …

javascript logic eval calculator
Ruby: eval with string interpolation

I don't understand, why eval works like this: "123 #{456.to_s} 789" # => "123 456 789" eval('123 #{456.to_s} 789') # => 123 How can I …

ruby string eval string-interpolation
DataBinder.Eval in c#

Hi anybody know how to use databinder.eval in c# Actually I've tried this LinkButton lnkName = new LinkButton(); lnkName.CommandArgument = …

c# eval databinder