User Profile

Collapse

Profile Sidebar

Collapse
jmash
jmash
Last Activity: Mar 31 '08, 10:03 AM
Joined: Oct 1 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • jmash
    started a topic Hexadecimal string to ascii conversion
    in .NET

    Hexadecimal string to ascii conversion

    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
    See more | Go to post

  • jmash
    started a topic How to replace " with " character in String
    in .NET

    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
    See more | Go to post

  • jmash
    replied to How to dynamically customize .Net form
    in .NET
    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....
    See more | Go to post

    Leave a comment:


  • jmash
    started a topic How to dynamically customize .Net form
    in .NET

    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...
    See more | Go to post

  • 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);
    ...
    See more | Go to post

    Leave a comment:


  • jmash
    started a topic Problem passing selected value to another page

    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>
    ...
    See more | Go to post
No activity results to display
Show More
Working...