AutoCompleteExtender AJAX control

  • Thread starter Thread starter Tomas
  • Start date Start date
T

Tomas

Hi,

I am trying to implement AutoCompleteExtender feature in my web project.
One think which I do not understand, how to access local variables from
GetAutoCompleteList method? Now I get error.
Maybe someone could help with this?


Regards,
Tomas
 
"how to access local variables"
local in terms of what?

void GetAutoCompleteList()
{
int a;
}

in this case i call 'a' a local variable.....
I call local variable the ones that you can simply type the name and access
them :)

So i am not sure what you are referring too ....
If you referring to class variables( member variables) then you can not
since GetAutoCompleteList is declared as static (probably).

George.
 
Back
Top