Ask a Question related to ASP.NET General, Design and Development.
-
Jesse #1
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
-
#40547 [Asn->Csd]: spelling mistake
ID: 40547 Updated by: jmertic@php.net Reported By: pat at languageschoolint dot com -Status: Assigned +Status:... -
#40547 [Opn->Asn]: spelling mistake
ID: 40547 Updated by: tony2001@php.net Reported By: pat at languageschoolint dot com -Status: Open +Status: ... -
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: ... -
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... -
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... -
Jesse #2
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



Reply With Quote

