Click here to Skip to main content
15,889,763 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
XML
Parser Error Message: Could not load type 'view.aspx.dropdownlist'.

Source Error:


Line 1:  <%@ Page Language="vb" AutoEventWireup="false" CodeBehind="dropdownlist.aspx.vb" Inherits="view.aspx.dropdownlist" %>
Posted

1 solution

Does not make sense. Looks like you modified the Inherits attribute of the page. Inherits defines a code-behind class for the page to inherit.

I guess it should just be: dropdownlist, change and see.
Try:
ASP.NET
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="dropdownlist.aspx.vb" Inherits="dropdownlist" %>


Details: MSDN: @ Page[^]
 
Share this answer
 
Comments
nicky_008 13-Jun-12 5:36am    
no... it dosent work
Sandeep Mewara 13-Jun-12 6:06am    
I told what exactly it should be. It's code behind class name. Check what it is and replace with it. You should not playwith these properties until you know what they do.

What is your code behind class name for the page?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900