function GenerateTermSheet()
{
var urlString = <%= System.Web.VirtualPathUtility.ToAbsolute("~/mvc/Indications.cfc/CreateTermSheet/")%>
var guidString = GetGUIDValue();
alert(urlString);
// $.ajax({
// type: "POST",
// url: urlString,
// success: function(data) {
// alert('Success!');
// }
// });
}
When I use firebug...I can see that it applies the correct path to urlString, however it returns this error at that line?
invalid regular expression flag v
[Break On This Error] var urlString = /Extranet/mvc/Indications.cfc/CreateTermSheet/
What could this be?