.NET SDK

  • Thread starter Thread starter Prince
  • Start date Start date
P

Prince

I believe there are incorrect information within the .NET
SDK documentation.

for a DropDownList control, it states the following
properties exist.

http://msdn.microsoft.com/library/default.asp?
url=/library/en-
us/cpref/html/frlrfsystemwebuiwebcontrolsdropdownlistclass
topic.asp

SelectedValue -- Gets the value of the selected item in
the list control or selects the item in the list control
that contains the specified value.

Within VisualStudio.NET, there is no such property!!!

--Prince
 
Within VisualStudio.NET, there is no such property!!!

No, but withing a DropDownList there is, as long as you're running version
1.1 of the .Net framework.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
 
Maybe I have to re-install 1.1 because I have installed
1.1 before. When I look in the Add/Remove program list,
I see, Microsoft.NET Framework1.1

Is there a reason why it would state this and not be
1.1? Could it be something I did to corrupt the
libraries?

I'll reinstall, just in case.
 
If you have both 1.0 and 1.1 versions of the Framework, make sure that your
project is using the right version in IIS Admin.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
 
Can I just remove version 1.0?
-----Original Message-----
If you have both 1.0 and 1.1 versions of the Framework, make sure that your
project is using the right version in IIS Admin.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.




.
 
No. Removing the first version doesn't change any settings in the web sites.
What you need to do is to open the IIS Admin snap-in, find the web site,
right-click, select "Properties" from the context menu, and go to the Home
Directory tab. Click the "Configuration" button, and change the ISAPI
mappings there. After that, it doesn't matter whether or not you have both
versions installed. They are completely independent.

New web sites, after installing the new Framework, will use 1.1 by default.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
 
thanks. I've checked and IIS is set to use 1.1. For
example, .aspx extension is set to:
C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322
\aspnet_isapi.dll

One thing I noticed within the snap it is that under
Verbs, Limited to is checked with GET, HEAD, POST, DEBUG
written within the textbox.

I don't quite understand what Verbs are but it seems like
I should check All Verbs radio button instead of the
Limited to: radio button.

You said new sites will use the 1.1 does this mean the
site I'm currently developing won't use it?

-- Prince
 
Back
Top