Could somebody have a look at this and tell me what if anything is missing from it:
<%@ LANGUAGE = JavaScript%>
<HTML>
<HEAD>
<meta name="Microsoft Theme" content="indust 110, default">
</HEAD>
<BODY>
<%
// Connect to database
var adoConnection =...
How could I modify the following code to allow a breeder to update the pups available field of their record in the breeders table?
<%@ LANGUAGE = JavaScript%>
<HTML>
<HEAD>
<meta name="Microsoft Theme" content="indust 110, default">
</HEAD>
<BODY>
<%
// Connect to...
How could I modify this code to enable a user to update the pups available field
<BODY><TABLE BORDER=1>
<THEAD>
<TR>
<TH>BreederNo</TH>
<TH>Breeder Name</TH>
<TH>Phone No.</TH>
<TH>Address</TH>
<TH>Pups Available</TH>
</TR>
</THEAD>
<% var str_DogName = new...
In my db I have three tables Breeder=(BrNo,BrName,BrPhoneNo,BrAddress,BreedName)
Customer=(CNo,CName,CAddress,CPhoneNo)
ProvBooking=(BrNo,CNo,BookingDate)
I want a Breeder to be able enter their BrNo to query the db to see the details of customers who have booked a pup with them,what form...
In my db I have three tables Breeder=(BrNo,BrName,BrPhoneNo,BrAddress,BreedName)
Customer=(CNo,CName,CAddress,CPhoneNo)
ProvBooking=(BrNo,CNo,BookingDate)
I want a Breeder to be able enter their BrNo to query the db to see the details of customers who have booked a pup with them,what form...
Could somebody help me sort this out. I need to add radio buttons to this script so that a user would have a choice of Small,medium or large and have the list of dogs meeting their choices returned as an ASP. I would be really grateful for as much help as possible
<%@ LANGUAGE = JavaScript%>...
Could anyone tell what is wrong with the following script and how would I go about fixing it.
<%@ LANGUAGE = JavaScript%>
<HTML>
<BODY>
<h3>Dog Breed Selector</h3>
<p>Please choose what Size of dog you would prefer:</p>
<form>
<table>
<td><input type='radio' name='size' value='S'>Small</td>...
How exactly would you add radio buttons to the script below in order to allow a user to choose attributes from a db table that has Size,Grooming,ExerciseRequirements(e.g. Size=Small,Medium or Large)etc.and return a Breed that meets their requirements.
<% @ Language = jscript %>
<%
function...
Whenever I try to run the following JScript :
<% @ Language = jscript %>
<%
function JScriptDatabaseRead() {
/*
declare variables
*/
var c, r, strOut = "";
var sql = "SELECT BreedName FROM Breeds WHERE Size = 'L' ORDER BY Size;";
var cnstr...
Whenever I try to run an ASP I get the error message:
Active Server Pages, ASP0134(0x80004005)
The object has an invalid ProgID of 'MSWC.MyInfo'
//global.asa
Could somebody tell me how to rectify this?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.