Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Beginner Mistake

    I am trying to display a string located in my code behind page. I have
    tried accessing the variable directly, and also as a Property. Every
    time I recieve the following error:

    CS0201: Only assignment, call, increment, decrement, and new object
    expressions can be used as a statement

    This is the html:

    <td style="WIDTH: 703px; BACKGROUND-REPEAT: no-repeat; HEIGHT: 28px"
    width="703" background= "<%FirstTD;%>" >

    And this is the code:

    public string FirstTD
    {
    get
    {
    if(Request.QueryString["style"]=="children")
    firstTD = "images/bg_kathy_template_r2_c2.gif";
    else
    firstTD = string.Empty;
    return firstTD;
    }
    }


    Any ideas. I know this is basic, but I would really appreciate any input.

    Jesse Guest

  2. Similar Questions and Discussions

    1. #40547 [Asn->Csd]: spelling mistake
      ID: 40547 Updated by: jmertic@php.net Reported By: pat at languageschoolint dot com -Status: Assigned +Status:...
    2. #40547 [Opn->Asn]: spelling mistake
      ID: 40547 Updated by: tony2001@php.net Reported By: pat at languageschoolint dot com -Status: Open +Status: ...
    3. Stupid Mistake
      I am using CFMX 6.1 and I was playing with the settings in Sandbox Security and now I cannot get access to CF Admin. I get the following error: ...
    4. was it a mistake AICS on OS X 10.3
      Ok I went a did it, destroyed OS 9 and AI 8 & 10 and upgraded to OS 10.3 and AICS, if only I could turn back the clock. 1st problem: Printing from...
    5. loadMovie *bug* or my mistake ?
      with these line _root.createEmptyMovieClip( "myclip", 1 ) _root.myclip.loadMovie( "myclip.swf" ) then I preview and I can see that these...
  3. #2

    Default Re: Beginner Mistake

    I answered my own question, thanks anyway

    Jesse wrote:
    > I am trying to display a string located in my code behind page. I have
    > tried accessing the variable directly, and also as a Property. Every
    > time I recieve the following error:
    >
    > CS0201: Only assignment, call, increment, decrement, and new object
    > expressions can be used as a statement
    >
    > This is the html:
    >
    > <td style="WIDTH: 703px; BACKGROUND-REPEAT: no-repeat; HEIGHT: 28px"
    > width="703" background= "<%FirstTD;%>" >
    >
    > And this is the code:
    >
    > public string FirstTD
    > {
    > get
    > {
    > if(Request.QueryString["style"]=="children")
    > firstTD = "images/bg_kathy_template_r2_c2.gif";
    > else
    > firstTD = string.Empty;
    > return firstTD;
    > }
    > }
    >
    >
    > Any ideas. I know this is basic, but I would really appreciate any input.
    >
    Jesse Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139