Heya guys and thanks for taking the time to read my post.
I am trying to follow an AJAX video walkthrough here http://ajax.asp.net/
"See how easy it is to build from scratch a ?To Do List? management
application using ASP.NET 2.0, and then enhance the user experience
using the ASP.NET AJAX Extensions."
I managed to complete the example which involved creating a typed dataset using the dataset wizard, along with a tableadapter. I did change the table and some of the fields the example used as i was adapting it for my own use. Then You are required to create an object data source which use the type of table adapter you have created and binds to a GridView.
"<asp:ObjectDataSource TypeName="UserImagesDataSetTableAdapters.tblUserSubmittedImagesTableAdapter"
When I had finished the example worked fine as I was debugging it, it was using the development webserver on dynamic ports so the url was "http://localhost:3374/AJAXGridView/Default.aspx". As soon as i tried to connect to it directly over our network to our webeserver "http://10.0.0.5/AJAXGridView/Default.aspx" I got the following error...
"The type specified in the TypeName property of ObjectDataSource
'UserImageDataObject' could not be found."
It looks like it might be a similar situation to this post http://forums.asp.net/p/982597/1259440.aspx, which states that you may need to use "project names pace.class name", so in my case AJAXGridView.UserImagesDataSetTableAdapters.tblUserSubmittedImagesTableAdapter?
I have tried this but i'm still getting the error, i'm using visual web developer. I would be very grateful to anyone who could exmplain why this is working when debugging and failing when connecting over the network nornamlly and how to reosolve this issue.
Cheers
Steve