Click here to Skip to main content
15,886,919 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
See more:
While connecting windows server to linux server UI page was connectint but while login it was dispalying usename&Password doesn't match . I debug the code it was not going inside page load
objDataTable.Load(objReader);

Database was correct and username password also correct .
While debugging i found one
The given Key was not present


What I have tried:

I tried in database table i change that column value chatrset & latin2 .
Posted
Updated 27-Jul-23 1:35am
Comments
Graeme_Grant 27-Jul-23 5:34am    
message is quite clear.

1 solution

What it is saying is that the DataTable columns and the DataReader that you are loading it from do not match: the reader is providing a column called "Foo" and the table expects one called "Bar".

We can't help you fix that: we have no access to any of your code or information!
 
Share this answer
 

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