Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by flyclassic22

  1. flyclassic22

    send php mail, appear in hotmail "This message may be dangerous. "

    Do this by adding -f myname@mydomain.com (with your legitimate domain name) to the headers. I have had success with this when trying to negotiate AOL's system." sorry, can you give me examples? how do i add -f into my headers?
  2. flyclassic22

    send php mail, appear in hotmail "This message may be dangerous. "

    i tried , still filtered as spam... how do other people do it so that it doesnt look like spam? anyone has examples? I am trying to do a html email
  3. flyclassic22

    send php mail, appear in hotmail "This message may be dangerous. "

    Hi, I've tried sending email with php, with the following script: $headers ="From: Webmaster<flydx_007@msn.com>\r\nReply-To: Webmaster<flydx_007@msn.com>"; $headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n"; mail($emailadd, $subject, $message, $headers); blablabla however...
  4. flyclassic22

    MS SQL 2005 Studio, how to set foreign key with referential keys

    hi, i 've table with orderid a foreign key to the ORDERS table, however, i forgotten to set ON DELETE CASADE while assigning the foreign key that time. Now how do i re set it? Is there any way out with SQL 2005 Studio Express? Or what kinda of Query Command should i type? I dunno how to Alter...
  5. flyclassic22

    asp.net c# html tags in database? possible

    hi, i have a column a "text" type, i wish to let user input html tags into the column from a multi line textbox. However, alot of " and ' chars are disturbing my insert sql statement. What do i have to do to store tags inside database? as in <> and </> etc..? do i need to do replace " all that...
  6. flyclassic22

    Forms Authentication Redirect to default.aspx

    hmm.. thanks behindthepipe.. What if i've another login page ,say adminlogin.aspx which uses another function and access another table for checking ,just for admininstrator? How do i include it in the web.config?coz one already exist together with the location path as well ?
  7. flyclassic22

    text property in a hyperlinkfield returning null

    I've a gridview which has Hyperlinkfield in Second Column, I'm trying to access the text property, but its returning null protected void GridView2_RowCommand(object sender, GridViewCommandEventArgs e) { int index = Convert.ToInt32(e.CommandArgument); GridViewRow selectedRow...
  8. flyclassic22

    grab data where datetime is 30days from now

    I've just found out myself after browsing google... What i did... DateTime todaydate; DateTime sixtydaysago; todaydate = sixtydaysago = DateTime.Today; sixtydaysago = sixtydaysago.AddDays(-30); string selectquery = "SELECT [ImagePath], [Description], [Price]...
  9. flyclassic22

    grab data where datetime is 30days from now

    How do i insert a sql and asp.net datetime functions and date now to come up with a sql statement to select data which are within now and 30days ago? Any examples???
  10. flyclassic22

    Forms Authentication Redirect to default.aspx

    no, i can't do that.. can anybody else explain to me about forms authentication.. does that mean that now all my .aspx files are already protected by default.? but this isn't true because i can still view these files without login..(if i dun check for (if(User.Identity.isAutheticated) in page load..
  11. flyclassic22

    Forms Authentication Redirect to default.aspx

    you mean i don't have to check for my other pages ? but if i would like to display a portion which only members can see in the page, how do i do it? i am using if(User.Identity.isAuthenticated) for everypage load now, i am doing the wrong way?
  12. flyclassic22

    Forms Authentication Redirect to default.aspx

    meaning what..? how should i do?
  13. flyclassic22

    Forms Authentication Redirect to default.aspx

    means ?? how should i do??
  14. flyclassic22

    Forms Authentication Redirect to default.aspx

    hi, i'ved created a membership page with asp.net (not with membership roles) In my login.aspx i've 2 textbox (password and username)and 1 button to login: protected void Button1_Click(object sender, EventArgs e) { if (Page.IsValid) {...
  15. flyclassic22

    how to grab first 20 words from the database

    okay, ill be trying out, how do i bind it to a GridView In after grabbing 20 words? Coz i understand GridView is Datasource , need to bind data.

Part and Inventory Search

Back
Top