Click here to Skip to main content
16,005,038 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Error Pin
K030625-Jun-09 19:21
K030625-Jun-09 19:21 
GeneralRe: Error Pin
KhandelwalA25-Jun-09 19:23
KhandelwalA25-Jun-09 19:23 
GeneralRe: Error Pin
K030625-Jun-09 19:33
K030625-Jun-09 19:33 
GeneralRe: Error Pin
KhandelwalA25-Jun-09 19:35
KhandelwalA25-Jun-09 19:35 
GeneralRe: Error Pin
Christian Graus25-Jun-09 19:46
protectorChristian Graus25-Jun-09 19:46 
AnswerRe: Error Pin
N a v a n e e t h25-Jun-09 19:46
N a v a n e e t h25-Jun-09 19:46 
QuestionSSI from URL Pin
crazylad25-Jun-09 15:25
crazylad25-Jun-09 15:25 
QuestionDropDownList.SelectedItem.Text returning Null Pin
Norriskilla25-Jun-09 11:24
Norriskilla25-Jun-09 11:24 
I am populating a drop down list from AD, which is working fine (The drop downlist is populated when I browse to the site.) The problem I am having is that when I later go to use that data with dropdownlist.SelectedItem.Text, nothing is returned. Any suggestions?

Dim Groups1 As New DirectorySearcher<br />
    Dim GroupSearchRoot1 As New DirectoryEntry("LDAP://OU=SomeOU,OU=SomeOU,OU=SomeOU,DC=SomeDomain,DC=SomeTopLevelDomain")<br />
    <br />
    With Groups1<br />
      <br />
      .SearchRoot = GroupSearchRoot<br />
      .Filter = "(&(ObjectClass=Group)(CN=SomeGroup))"<br />
    End With<br />
  <br />
    Dim Members1 As Object = Groups1.FindOne.GetDirectoryEntry.Invoke("Members", Nothing)<br />
        <br />
    For Each Member As Object In CType(Members1, IEnumerable)<br />
      Dim CurrentMember1 As New DirectoryEntry(Member)<br />
      dropdownlist.Items.Add(CurrentMember1.Name.Remove(0, 3))<br />
<br />
Some code to sort the dropdownlist alphabetically...

AnswerRe: DropDownList.SelectedItem.Text returning Null Pin
Christian Graus25-Jun-09 18:36
protectorChristian Graus25-Jun-09 18:36 
GeneralRe: DropDownList.SelectedItem.Text returning Null Pin
Norriskilla26-Jun-09 3:28
Norriskilla26-Jun-09 3:28 
QuestionPorting over controls [VB.net -&gt; ASP.NET] Pin
EliottA25-Jun-09 9:44
EliottA25-Jun-09 9:44 
AnswerRe: Porting over controls [VB.net -&gt; ASP.NET] Pin
Colin Angus Mackay25-Jun-09 9:52
Colin Angus Mackay25-Jun-09 9:52 
GeneralRe: Porting over controls [VB.net -&gt; ASP.NET] Pin
EliottA25-Jun-09 9:53
EliottA25-Jun-09 9:53 
GeneralRe: Porting over controls [VB.net -&gt; ASP.NET] Pin
Abhijit Jana25-Jun-09 10:01
professionalAbhijit Jana25-Jun-09 10:01 
GeneralRe: Porting over controls [VB.net -&gt; ASP.NET] Pin
EliottA25-Jun-09 10:19
EliottA25-Jun-09 10:19 
GeneralRe: Porting over controls [VB.net -&gt; ASP.NET] Pin
Not Active25-Jun-09 10:43
mentorNot Active25-Jun-09 10:43 
QuestionIs it possible to store bytearray in viewstate ? Pin
meeram39525-Jun-09 7:25
meeram39525-Jun-09 7:25 
AnswerRe: Is it possible to store bytearray in viewstate ? Pin
led mike25-Jun-09 8:22
led mike25-Jun-09 8:22 
AnswerRe: Is it possible to store bytearray in viewstate ? Pin
Abhijit Jana25-Jun-09 9:50
professionalAbhijit Jana25-Jun-09 9:50 
QuestionCreate xml file in asp.net with C# Pin
mahichandu25-Jun-09 6:02
mahichandu25-Jun-09 6:02 
AnswerRe: Create xml file in asp.net with C# Pin
led mike25-Jun-09 6:30
led mike25-Jun-09 6:30 
AnswerRe: Create xml file in asp.net with C# Pin
Pavan_Putra25-Jun-09 20:29
Pavan_Putra25-Jun-09 20:29 
Questioncode for online transaction Pin
AshishRasekar25-Jun-09 5:58
AshishRasekar25-Jun-09 5:58 
AnswerRe: code for online transaction Pin
led mike25-Jun-09 6:29
led mike25-Jun-09 6:29 
AnswerRe: code for online transaction Pin
Abhijit Jana25-Jun-09 9:51
professionalAbhijit Jana25-Jun-09 9:51 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.