0

I am running my segment which is suppose to read the input from the form and add it into the json file.

This is the form input layout - If the radio button "Custom" is selected, then the user is required to enter the width and height values into the box. these inputs are then pull to add to a json Form Layout

The problem i am experiencing is the error i get when i run my code - See code below:

    //Dialog Size Setup
    if (CustomSize.Checked)
    {
        string widthBox = Width.Text.ToString();
        string heightBox = Height.Text.ToString();

        string CustomSizejson = File.ReadAllText(DownloadConfigFilelocation);
        JObject CustomSizeobj = JObject.Parse(CustomSizejson);
        CustomSizeobj["externalSite"]["webLogin"]["window"] = "height=" + heightBox + ",width=" + widthBox + ",resizable,scrollbars";
        string CustomSizenewJson = CustomSizeobj.ToString();
        File.WriteAllText(DownloadConfigFilelocation, CustomSizenewJson);
    }

This is the error I get

SEE ERROR HERE

Can some assist?

Dacre Denny
  • 26,362
  • 5
  • 28
  • 48
Tixart
  • 25
  • 4

0 Answers0