Hi,
I am quite a newbee at VB2008 and trying to build my first ecommerce website. I have an Access database and I have created the UI. For my product pages I used a ListView binded to selected items in the database depending on product category. It looks good but when I tried to add an "AddToCart" Imagebutton to each record I got stuck and in the code behind file I get an error message that the btnAdd.click doesnt exist.
Also,...
Search Result
Collapse
3 results in 0.0045 seconds.
Keywords
Members
Tags
-
Add to cart button in ListView
-
Textbox databindings
I am getting an error I don't understand - "Child list cannot be created".
I have successfully bound a DataView column to a textbox, but am having problems binding a child table's column in the same way.
DataView column > Relation > Parent table column
What format should I be using to link from a dataview with IDs, to the parent tables that contain the actual information?
... -
Punctuation mucking up DataView RowFilter and LIKE statement
Hi,
The Background
I'm working on a Bible searching application, and I have a DataTable with a whole lot of verses in it that I'm wanting to search. So I'm using a DataView with a RowFilter to search through the text to return rows with a particular word. A sample of the code is as follows:
Code:public int SearchVerses(string searchtext) { searchtext = searchtext.Replace("'","\\'");