M
Mr. R
Hi
I need to send dynamic SQL commands to the database. For example:
update AffiliateAccount
(
username,
company,
contactName,
address,
city,
zip,
state,
country,
homepage,
email,
phone,
fax,
pwd
)
values
(
"jdoe",
"Johwn Doe Music Ltd",
"John Doe",
"Some streeed",
"Los Angeles",
"ZIP 345",
"California",
"USA",
"www.johndoeltd.com",
"(e-mail address removed)",
"+1 555 5555 5555",
"+1 555 5555 5556",
"yankedoodleday"
);
The values is given by TextBoxes in an aspx page. I don't want to use
GridViews for adding and manigin user information. It looks more
professional if it is made by ordanary forms instead.
What type ASP.NET of componant do I use for this? Can I use a DataSet or is
there any SQLCommand component I can use.
Any suggestin is aprecheated.
Lars
I need to send dynamic SQL commands to the database. For example:
update AffiliateAccount
(
username,
company,
contactName,
address,
city,
zip,
state,
country,
homepage,
email,
phone,
fax,
pwd
)
values
(
"jdoe",
"Johwn Doe Music Ltd",
"John Doe",
"Some streeed",
"Los Angeles",
"ZIP 345",
"California",
"USA",
"www.johndoeltd.com",
"(e-mail address removed)",
"+1 555 5555 5555",
"+1 555 5555 5556",
"yankedoodleday"
);
The values is given by TextBoxes in an aspx page. I don't want to use
GridViews for adding and manigin user information. It looks more
professional if it is made by ordanary forms instead.
What type ASP.NET of componant do I use for this? Can I use a DataSet or is
there any SQLCommand component I can use.
Any suggestin is aprecheated.
Lars