How To ESCAPE "comma" In Javascript Error / Unterminated String Constant
Feb 14, 2011
EDIT1:
btnDelete.Attributes.Add("onclick", String.Format(@"return DeleteRow('{0}',{1},{2},{3});", e.Row.ClientID, e.Row.RowIndex, DataBinder.Eval(e.Row.DataItem, "Id"), "'" + DataBinder.Eval(e.Row.DataItem, "Name") + "'"));
edit:
i get this error:
Message: Unterminated string constant
i am passing the value from code behind and some of my text have somethinh lke this:
[code]....
View 3 Replies
Similar Messages:
Jan 21, 2011
I have piece of code:
[Code]....
View 4 Replies
Jan 28, 2011
I am fetching some data from Db and displaying it in a textarea using jquery in the following way.$('#textareatest').val('<% =teststring %>').It is possible that the string 'teststring' can contain XHTML line breaks(<br/>).whenever the string contains <br/> I am getting the 'unterminated string literal' error.I saw a number of posts considering '' as line breaks and suggesting to escape it.I tried to escape the <br/> similarly,but it didn't work.
View 4 Replies
Jul 30, 2010
I have data that I am trying to read in from a .csv file. Some of my fields however have their own commas. For instance my file may look like:
Name, City, Country
And my data may have:
Walmart, New York, USA
"My store, and more", New York, USA
If you look at the second row of my data you will notice the first field has a comma in it: "My Store, and more".
It is surrounded by double quotes to distinguish that the field includes the comma, but when I read it into a table in MSSQL it splits that field into two. How do I tell MSSQL to leave everything in the double quotes as one field?
View 2 Replies
Oct 28, 2010
I have a field with product name
abc® product1
If I get the data from the database and databind it to the dropdownlist. It becomes
<option value="2">abc ® product1</option>
I don't want ASP.net to escape the ® to %amp;reg.
View 3 Replies
Feb 9, 2011
I have an Asp.Net website which should have a variable as a string in the url.
The content of the website changes depending on the year. the idea is to have this year in the url in a clean way.
http://localhost/YEAR/index.aspx
I have done this in MVC with routing, but i have no idea how to do it in asp.net I basically need just 1 route I guess. so all URL's will be as they were before (index.aspx, ...) basically in stead of having ?year=2011 behind EVERY url in the website i'd like to have this value in the route.
View 1 Replies
Nov 8, 2010
I need to be able to navigate through the file system from an asp.net page and gather metadata on files, directories ... The simple code I've put together makes a list of directories/files in a given location and has everything displayed as a link button. My problem is with link buttons under which I have paths that include ampersands and blanks. Here's a sample of code:
[Code]....
The Response.Redirect("aPage.aspx?d="+ e.CommandArgument.ToString()); line has the problem ... the e.CommandArgument.ToString() shows a truncated path that stops just before the first ampersand detected. I tried escaping the ampersand with a backslash but it did not work ... somehow I guess it's not exactly the character that's causing the problem ..
View 3 Replies
Feb 2, 2011
What is the escape sequence for &-sign in string literals in web.config?
View 2 Replies
Sep 23, 2010
Are the any functions in C# that handle escape/unescape like JavaScript?
I have a JSON string like this:
{"Feeds":[{"Url":"www.test.com","FeedType":"Twitter"},{"Url":"www.test2.com","FeedType":"Youtube"}]}
Which looks like this after escape()
%7B%22Feeds%22%3A%5B%7B%22Url%22%3A%22www.test.com%22%2C%22FeedType%22%3A%22Twitter%22%7D%2C%7B%22Url%22%3A%22www.test2.com%22%2C%22FeedType%22%3A%22Youtube%22%7D%5D%7D
In my C# code I would like to unescape this string so that it looks exactly the same as it did before the escape()
View 2 Replies
Jul 10, 2010
I am trying to insert dynamic data into a onclick property for a control the code looks like this
onclick="openRadWindow('<%#Eval("ID";) %>','<%#Eval("ParentObjectID") %>');"
I cant get it to fire and the trouble seems to be the double quotes, what is the correct method on escaping the quotes so that this fires.
View 4 Replies
Sep 25, 2010
In my program, I want to make database connectivity, but when i write a connection string, complier says that it is unrecognized escape sequence(which is bolded in the following string), the string is :
Data Source=HIMANSHUSQLEXPRESS;Initial Catalog=Himanshu;Integrated Security=True
View 3 Replies
Mar 23, 2010
what is an alternative for javascript escape function in c# for e.g suppose a string:"Hi Foster's i'm missing /you" will give "Hi%20Foster%27s%20i%27m%20missing%20/you" if we use javascript escape function, but what is the alternative for c#. i have searched for it but no use.
View 4 Replies
Jul 27, 2010
In a situation where we accidentally published an asp.net website, without updatability, with one wrong URL, we'd like to just open that DLL and change the URL, to prevent waiting another week for the next publish opportunity.
In oldish native DLLs I knew how to change resources, but how would I attempt this with .NET DLLs? And is there an easy way, or only a hackerish one (I know of ildasm and ilasm)? If it matters, the string is a literal inside an event handler.
View 1 Replies
Mar 25, 2011
Everytime I compile my asp .net project it states the following:
'Sessions' does not contain a definition for 'Select'.
In the page this happens on if I change something put it back and save and re-compile it tends to go ok, but at the moment it is happening every time. It does contain a definition for Select I can type it in plus the page does not show an error where this code is and works when it does compile ok?
View 1 Replies
Mar 5, 2010
I'm where am i going wrong with my hyperlink?
[Code]....
i get a compilation error, Unrecognized escape sequence.
View 4 Replies
Jan 18, 2010
Is there a faster way to check is a comma seperated string contain more than 1 diffrent value?
str = "String1, String2, String1"
I want the above str to return TRUE as it contain 2 different value. How can I do that?
View 8 Replies
Mar 12, 2010
I reading a string. That string is Name like Johnny. If this "Johnny" contains comma, hyphen or apostrophe, I have to throw a error. I m able to read, if that string has numeric data. but I m unable to read this
View 7 Replies
Mar 29, 2010
I have a string like this "abc, def, ghi, jkl," . and items like "mno, pqr," could be added dynamically later. I'm stucked on how to get the last item without the ",". e.g. return "jkl" or "pqr" which ever is the last.
View 6 Replies
Oct 23, 2010
i have a string, and i want to replace the last comma with something else. For instance this is my string;
"Monday, December 6, 9:00 PM"
How do i replace that last comma so it can look like this;
"Monday, December 6 2010 9:00 PM"
View 4 Replies
Mar 7, 2011
I'm trying to trim a comma from the end of a string. I've tried the following:
Variable.TrimEnd(',');
I've also tried:
char[] CharToTrim = { ',' };
Variable.TrimEnd(CharToTrim);
Neither option is working. why?
View 4 Replies
Mar 8, 2011
Suppose I have the string like String sample="{K,S},{T}". Then splitting with "," I need the output of the string array. The string array is having items {k,S}, {T}. how to split the above string with "," separated.
View 7 Replies
Feb 9, 2011
I have the following string, is it possible to split seperate & make as comma seperator string by 'and', 'or' and 'not' operators. "Application AND for Payment OR John OR Smith OR Ralph Doe NOT Bob NOT Ad Hock" and assign to the following variables:
sAndOperator = 'Application', 'for Payment'
sOrOperator = 'John', 'Smith', 'Ralph Doe'
sNotOperator = 'Bob','Ad Hock'
View 5 Replies
Mar 8, 2010
Is there a way to easily split a comma delimited string into variables (or table fields), example:
PHP Code:Feed.SmulocV2.Equipment,CAT,,DFT08783,2567,Hours,2010-02-07 06:37:41,Lat:38.025921,Lng:-88.776733
View 5 Replies
Aug 1, 2010
I developed crystal report using the tool available with VS2005.
I need help for extracting a string in a formula field.
Example :
String= CFG:1,132578992,1958| result should be 132578992
String= CFG:2,158974,1953| result should be 158974
in the string always starting part is "CFG" and ending part is "|" how can i trim the string after the first comma .
View 2 Replies
Sep 23, 2010
How to replace the remaining String after the Comma Starts Using SQL Query. Below is the data
"MediaRights, MediaRightsLink, MediaRightsCompanies, MediaRightsTypes"
View 2 Replies