Question

In a particular page i have a ascx control which contains a table.

Now I want to set this control visible/invisible but the visible method is not detected by the intellisense.

The only methods are 1)Equals and 2) ReferenceEquals

Main Page

<VPM:VotingPolls Runat="server"></VPM:VotingPolls>

Thanks

Was it helpful?

Solution

Thanks it has been solved

The problem was that no id was set.

<VPM:VotingPolls ID="VPS" Runat="server"></VPM:VotingPolls>

then

VPS.Visible=True/False

OTHER TIPS

Make sure that your markup is well formed and that there is a proper header line for the ascx control on your page. 99% of the time, if intellisense doesn't work, it means that something is wrong with the code and/or markup.

Sometimes intellisense doesn't display available attributes. But the visible attribute will be available. So just type visible='true/false'. That should work.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top