473,322 Members | 1,671 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,322 software developers and data experts.

using SQL in ASP.NET

Hi group,

For the first time I have to use SQL with ASP.NET.
I have the following:

a db in SQL called newsletter where I have:

name
surname
emailadress (= the key)

On an aspx form I have 3 fiels on it (name, surname and email)

I want to check if the emailadress on the form is in the db.

Has someboday a clue how to do this ?

grz

Bernie V

--
http://www.djberniev.be
Nov 18 '05 #1
2 974
Hi,

this is trivial task.

write code to handle button click event. on that code open connection to
DB and create SQL query to check if the E-mail value exist in DB :

private void Button1_Click(object sender, System.EventArgs e)
{
System.Data.SqlClient.SqlConnection oCon;
System.Data.SqlClient.SqlCommand oCmd;
try
{
oCon = new System.Data.SqlClient.SqlConnection("Your connection
string to DB");
oCon.Open();
oCmd = new System.Data.SqlClient.SqlCommand("select emailadress from
newsletter where emailadress = '" + email.Text + "'",oCon);
object strRetVal = oCmd.ExecuteScalar ();
if ( strRetVal == null)
{
//mail isnt exist in DB
}
}
catch
{
}
finally
{
if (oCmd != null)
oCmd.Dispose ();
if (oCon.State != System.Data.ConnectionState.Closed)
oCon.Close();
if (cCon != null)
oCon.Dispose ();
}

}
Natty Gur[MVP]

blog : http://weblogs.asp.net/ngur
Mobile: +972-(0)58-888377
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 18 '05 #2

"Natty Gur" <na***@dao2com.com> schreef in bericht
news:e8**************@tk2msftngp13.phx.gbl...
Hi,

this is trivial task.

write code to handle button click event. on that code open connection to
DB and create SQL query to check if the E-mail value exist in DB :

private void Button1_Click(object sender, System.EventArgs e)
{
System.Data.SqlClient.SqlConnection oCon;
System.Data.SqlClient.SqlCommand oCmd;
try
{
oCon = new System.Data.SqlClient.SqlConnection("Your connection
string to DB");
oCon.Open();
oCmd = new System.Data.SqlClient.SqlCommand("select emailadress from
newsletter where emailadress = '" + email.Text + "'",oCon);
object strRetVal = oCmd.ExecuteScalar ();
if ( strRetVal == null)
{
//mail isnt exist in DB
}
}
catch
{
}
finally
{
if (oCmd != null)
oCmd.Dispose ();
if (oCon.State != System.Data.ConnectionState.Closed)
oCon.Close();
if (cCon != null)
oCon.Dispose ();
}

}
Natty Gur[MVP]

blog : http://weblogs.asp.net/ngur
Mobile: +972-(0)58-888377
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!


thx !
I give it a try,

grz

Bernd

--
http://www.djberniev.be
Nov 18 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: Enos Meroka | last post by:
Hallo, I am a student doing my project in the university.. I have been trying to compile the program using HP -UX aCC compiler, however I keep on getting the following errors. ...
3
by: Mike L | last post by:
Should the command call "using" be before or after my namespace? **AFTER** namespace DataGridBrowser { using System; using System.Drawing; using System.Drawing.Drawing2D; using...
3
by: xzzy | last post by:
I was wondering why we have to have using System.Data using System.Configuration using etc.... why are they not all lumped into one 'using'? In other words, is there a best way to use...
14
by: pmud | last post by:
Hi, I need to use an Excel Sheet in ASP.NET application so that the users can enter (copy, paste ) large number of rows in this Excel Sheet. Also, Whatever the USER ENETRS needs to go to the...
3
by: JDeats | last post by:
I have some .NET 1.1 code that utilizes this technique for encrypting and decrypting a file. http://support.microsoft.com/kb/307010 In .NET 2.0 this approach is not fully supported (a .NET 2.0...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.