So I have a table that stores various prices for things. The ID is set as the primary key and doesnt allow nulls. I then have a stored procedure that takes the data entered into the form (ID) included and it works out the cost of that particular item. This is then presented in a gridview. However it isn't working, was working before and it's just stopped. Before, in the database the ID did allow nulls, however someone has told me this could be the problem along with this line of code

obj.CostID = (Int32)reader["CostID"];

This is used to fill the object with the data.

Any ideas how I can fix this? I've already changed the field in the database to not allow nulls.

Recommended Answers

All 2 Replies

what you are saying is that the cost details are not displaying in Form? or do you want check the nulls , before inserting the data into DB?

Is asp.net generating an error?

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.