Mako34

Members
  • Content count

    1
  • Joined

  • Last visited

About Mako34

  • Rank
    Forum Newbie
  1. Hi! I have a problem! Im using this kode in ASP to generate XML information to widhgets. clickURL='avdinfo.asp?id="&id&"&fys="&mm&"' Stri = "<chart lowerLimit='0' upperLimit='100' gaugeStartAngle='180' gaugeEndAngle='0' palette='1' numberSuffix='' tickValueDistance='30' showValue='1' decimals='2' dataStreamURL='Data.asp?id="&id&"' refreshInterval='3' gaugeInnerRadius='60' clickURL='avdinfo.asp?id="&id&"&fys="&mm&"'>" The line above generates this <chart lowerLimit='0' upperLimit='100' gaugeStartAngle='180' gaugeEndAngle='0' palette='1' numberSuffix='' tickValueDistance='30' showValue='1' decimals='2' dataStreamURL='CPUData.asp?id=2' refreshInterval='3' gaugeInnerRadius='60' clickURL='avdinfo.asp?id=2&fys=2'> When i Click on the Widhget then i Get this result avdinfo.asp?id=2&fys= in the URL . The second value is gone. It works when i hardcode the value like this: Stri = "<chart lowerLimit='0' upperLimit='100' gaugeStartAngle='180' gaugeEndAngle='0' palette='1' numberSuffix='' tickValueDistance='30' showValue='1' decimals='2' dataStreamURL='Data.asp?id="&id&"' refreshInterval='3' gaugeInnerRadius='60' clickURL='avdinfo.asp?id="&id&"&fys=2'> " I have the same problem if i Use a JavaScript function the second value is missing. Any suggestions? Best Regards Martin