Click here to Skip to main content
15,885,767 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more: , +
I've developed a web form with 2 dropdown lists (UserID, accounts), when I select a userID in one dropdown, the other dropdown retrieve data from SQL databse & fills the dropdown with all accounts that paticular user have. It worked properly untill I have made a slight change in the table, I've addded a new column to my table which is not applicable for this web form. Now the web form works if I debug it in my PC, but it doesn't fill out "accounts dropdown" when I host it in server & run it from another PC. Help me with this issue.

XML
<identity impersonate="true"/>
    <authentication mode="Windows"/>


I have added above lines to web config as well.
Posted
Updated 11-Sep-12 21:41pm
v3
Comments
Kuthuparakkal 12-Sep-12 3:42am    
I have removed "Urgent Please Help" from your question...
Kuthuparakkal 12-Sep-12 3:43am    
Need more details, table, store proc if any etc.. exact error if any
[no name] 12-Sep-12 3:53am    
there is only 1 table with 4 columns. userID,name,account,address.. when user selects the user ID from 1st dropdown, it is supposed to load all the accounts that he has. It was working properly until i add that last column (address). But it has nothing to do in this web form
Kuthuparakkal 12-Sep-12 3:54am    
how do you retrieve data ? Query, Stored Proc, and code for drop down bindin
[no name] 12-Sep-12 4:00am    
drop down binding
SELECT [account] FROM [tblAccountDetails] WHERE ([userID] = @userID)

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