Hello,
I have a string "00460069006E00 61006C" that is in Hexadecimal that needs to be converted as "Final" which is the translation of Hexadecimal. Do you know how to convert the Hex to readable string?
Thanks,
jmash
User Profile
Collapse
-
Hexadecimal string to ascii conversion
-
How to replace " with " character in String
Suppose I have the following string whch is part of an xml string:
String s= "Script Id="Test&q uot; "
And I need to get
s= "Script Id="Test" "
Can anyone tell me how this can acheived?
Thanks,
jmash -
Hi Nathan,
The solution to get the input from the user using an admin page looks interesting.
I was thinking in terms of resource files (.resx files) that can be modified possibly without having to recompile the application. But the problem is we need to recompile the code each time the .resx file is changed.
Also the requirement is to gather the information (many forms having many labels etc) as offline.... -
How to dynamically customize .Net form
Hello,
I wish to change a .aspx page label value dynamically. For example there is a web application with forms in it used by Marketing department. There are labels with text value say 'MarketingLabel 1' and so on.
Now if we need to provide the same application to another department say Sales how do we allow the users to customise label values? For example change MarketingLabel1 to 'SalesLabel1'. The users will not... -
Hi Jared,
Thanks for your comments. I have simplified the code to the following:
...Code:PassValue.asp <%@ language="VBScript"%> <html> <HEAD> <script language="javascript"> <!-- function setval(id) { alert("Testing"); document.all('selectedvalue').value=id; alert(document.all('selectedvalue').value);Leave a comment:
-
Problem passing selected value to another page
Hello,
The requirement is to display rows of data on a classic ASP page for rows in a recordset. On each row we have a link at the end to show detailed information about the selected row. A snapshot of the code is as follows: Please do not mind the html tags.
...Code:<table> <th>Ticket number</th> <th>Opened on</th> <th>Priority</th>
No activity results to display
Show More
Leave a comment: