Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 813559
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T01:22:48+00:00 2026-05-15T01:22:48+00:00

so I have this working in C# , why it is not working in

  • 0

so I have this working in C# , why it is not working in VB

 public string[] CustomizedRoles()
 {
   int length = Roles.GetAllRoles().Length;
   string[] arrRoles=Roles.GetAllRoles();
   string[] customizedRoles= new string[length+1];
   customizedRoles[0] = "";
   for (int i = 1; i < length+1; i++)
   {
       customizedRoles[i] = arrRoles[i-1];
   }

   return customizedRoles;
}

asp:GridView….

asp:DropDownList ID=”ddlOwnerRolesUpdate” runat=”server” DataSource=”<%# CustomizedRoles() %>” Height=”25px” Width=”177px” SelectedValue='<%# Bind(“Owner”) %>’>

where is “Owner” is a data value come from a datasource for the grid

it is working fine in C# .

in Vb with the same aspx and this code behind it is not working.

Public Function CustomizedRoles() As String()
    Dim length As Integer = Roles.GetAllRoles().Length
    Dim arrRoles As String() = Roles.GetAllRoles()
    Dim _customizedRoles As String() = New String(length + 1) {}
    _customizedRoles(0) = " "

    For index As Integer = 1 To length
        _customizedRoles(index) = arrRoles(index - 1)
    Next
    Return _customizedRoles
End Function

can anyone show me how to bind array of string to a dropdownlist from aspx to code behind in VB

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T01:22:49+00:00Added an answer on May 15, 2026 at 1:22 am

    I found that VB.NET can’t bind null values to dropdownlist my code had a mistake which generate a null value due to Array Initialization :
    Dim _customizedRoles As String() = New String(length + 1) {} // it should be length only

    after fixing this , it work fine , just a hint , C# do more automatic things than VB, so don’t count that VB will do things that C# do it by default.

    Public Function CustomizedRoles() As String()
        Dim length As Integer = Roles.GetAllRoles().Length
        Dim arrRoles As String() = Roles.GetAllRoles()
        Dim _customizedRoles As String() = New String(length) {}
        _customizedRoles(0) = " "
        For index As Integer = 1 To length
            _customizedRoles(index) = arrRoles(index - 1)
        Next
        Return _customizedRoles
    End Function
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a need to build the data string dynamically. This is not working,
i have this <li><a href=# >title</a> <span style='text-align:right;'>(0)</span></li> its not working and this <li><a
I have this query working but it is not returning back exactly what I
I have this button which is not working correctly for hold button for a
i have tried this code to redirect a php page.but it s not working
This is not working and it is driving me nuts. I have in the
Ok, so basically I have this part of the .htaccess partly working, but not
Why is this simple HTML document not working right? What have I missed? I
I have the a simple LinqToSQL statement that is not working. Something Like this:
I have added some animation using jquery but it's not working: $('.test-container').click(function(){ $(this).css('background-color', 'rgb(119,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.