Data Binding
Okay, I am new to ASP and C# but not new to C++ and Assembly. I used to develop back in the dos days and left when windows95 came out. I am back in the market again for developing and so far have C# down pretty dang well after 2 months of plugging at it. Not that much different from C++. Asp.net is something new to me all together though. The issue I am having involves working with datasets and binding. I figured out how to manually bind my controls without using the wizard as there are specific data I want in my datasets, not just the pull down all with the wizard method. I also use the select method to define my datasets even smaller. The issues I am having is I am used to using BindingContext() which is not to be seen in ASP.NET. It is in C# but not in the web side. I use that to move my pointer inside my dataset. Since I found out I cannot bind my dataset to a textbox, I want to be able to move my pointer and manually pull from a column the data I want to fill my textbox. So, anyone know what I need to do in asp to move pointers around in datasets?
|