hi there,
im currently trying to learn ASP with a slightly more ambishus than i thought it would be.
so far i have a database structure of:
</p><p>tblRecipe
RecipeID (PK Autonumber)
RecipeName
Directions (Memo)
Servings
CategoryID
tluIngredients
IngredientID (PK Autonumber)
Ingredient
tblRecipeIngredients
RecipeIngredientID (PK Autonumber)
RecipeID (FK)
IngrediantID (FK)
Quantity
tluCategory
CategoryID
Category</p><p>
i have been able to populate tblRecipe with this code:
HTML:
</p><p><form id="Recipes" name="Recipes" method="post" action="add_to_recipe.asp">
<p> Recipe Name : <input type="text" name=&qu ...
Go to the complete details ...