Tagged Questions
1
vote
5answers
55 views
How can you use php in a javascript function
<html>
<?php
$num = 1;
echo $num;
?>
<input type="button"
name="lol"
value="Click to increment"
onclick="Inc()" />
...
0
votes
1answer
155 views
How to fix HTML from WCF-webservice in AJAX Client Side-templates
I have a problem with my templates, when I return HTML, it's encoded by default, and I cannot find a way to "fix" it.
I want to replace NewLines (\u000a) with a straight <br />, but I always ...
0
votes
2answers
1k views
Asp.Net Rating Control
I can't get the ASP.NET Rating control's selected value(Current Value) in javascript. I am using Rating control in datagrid and do you know how I can get the CurrentValue of ASP.NET Rating in ...