Search

You searched for the word(s): userid:870283

Matching Posts

  • Re: quick email- Contact Us Form - Name/Email isn't coming through from 1st wizard step

    hey, thank you sooo much!!! i hate when its just such a small difference in syntax that makes the difference!!! it worked like magic!!! [quote user="venkatu2005"]Let me know where you want to hide or disable the Dropdownlist ie: on which page and what the reason to disable..[/quote] as for the hiddenfield reason, ok i'll try explaining, hope i don't confuse you. 1. main purpose of the site is for users to communicate to each other privately (messages), without disclosing their email
    Posted to Web Forms (Forum) by nadude on 7/4/2009
  • Re: Masterpage search textbox to search.aspx textbox- how?

    hey guys, thanks for your replies, clarified stuff for me, but still no search results... i decided to go the postbackurl route (is a lot simpler for me to understand, the code kinda makes sense). I removed the onclick event on master page, and changed the postbackurl to just "~/search.aspx" without the query stuff. And on page load of the search results i added: Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) If PreviousPage IsNot Nothing Then Dim txtSearch
  • Re: quick email- Contact Us Form - Name/Email isn't coming through from 1st wizard step

    thanks, that looks great, and i'll save a reference to it for use later... for now i need to move on to add other functions, also regarding email... have two questions.. 1. since my gmail username and password are already in web.config, do i have to include them above like in your code? cant i just exclude those parts? 2. on another page, i have a create message form, where one user can send another user a message (a db table), referenced by username... when they select a to username, i access
    Posted to Web Forms (Forum) by nadude on 7/3/2009
  • Re: quick email- Contact Us Form - Name/Email isn't coming through from 1st wizard step

    woooooooooohooooooooooooooooooo got it to work beautifully, thank you soooooooooooo much!!! just needed the .selectedvalue stuff... heres is the code Dim mail As MailMessage = New MailMessage() mail.[To].Add(DropDownList1.SelectedValue) mail.From = New MailAddress("myusername@gmail.com") mail.Subject = "New message recieved " Dim Body1 As String = "Hi, you've recieved a new message on MYSITE, please login and check your messages." mail.Body = Body1 mail.IsBodyHtml
    Posted to Web Forms (Forum) by nadude on 7/3/2009
  • Re: Masterpage search textbox to search.aspx textbox- how?

    woooooooooooohoooooooooooooooooooooooooooooooooooooo it works!!!!!!!!! thank you thank you thank you thank you!!!!!!!!!!! one little problem though, by activating the postbackurl on the masterpage search button. even if im on the home page, and i click on login on the home page, it used to bring me back to home page after login. now after login, instead of bringing me back to the page that i selected to login from, it always brings me back to the search page. how do i stop that from happening?
  • Re: quick email- Contact Us Form - Name/Email isn't coming through from 1st wizard step

    not sure how to set the value for the hiddenfield. the dropdown has a sqldatasource, and value option, but the the hidden field doesnt... so just using the drop down list option for now... as for the embedding the anchor link, it gives a compilation error, end of statement expected, and the source error is: Dim Body1 As String = "Hi, you've recieved a new message on <a href="http://www.servername.com/Members/Messages.aspx" target="_blank"> Site </a> , please
    Posted to Web Forms (Forum) by nadude on 7/3/2009
  • Re: createuserwizard send username and password confirmation email with gmail and smtp, validate duplicate email

    Should i copy and paste the above into my web.config file, while changing the email to true? my web.config file has no section with <membership> or <providers>. Will that be a problem?
    Posted to Security (Forum) by nadude on 7/2/2009
  • Masterpage search textbox to search.aspx textbox- how?

    Hi. I'm new to asp.net, using vb and masterpage. I've got a working search.aspx, enter whatever into txtSearch (the textbox id), and hit Search button, and gridview gets results. I added a textbox with id txtSearchH and search button to my master page. And hit the search button's postbackurl to search.aspx. But nothing happened, so I site googled for search and masterpage, and came up with a few options to try but nothing worked. Heres my code so far, hope someone can help: masterpage
    Posted to Master Pages, Themes and Navigation Controls (Forum) by nadude on 7/2/2009
    Filed under: search masterpage search page
  • Re: quick email- Contact Us Form - Name/Email isn't coming through from 1st wizard step

    [quote user="venkatu2005"]You have to specify Explicitly Name / Email Address of the user and Message etc.. all should be concatenated to Mail Body . [/quote] Sorry, I've no clue how to code to concatenate that stuff into the Mail Body. I've got them in three variable id's txtEmail, txtName and txtMessage. I'm using vb, how do i concatenate those three into one?
    Posted to Web Forms (Forum) by nadude on 7/1/2009
  • createuserwizard send username and password confirmation email with gmail and smtp, validate duplicate email

    I'm using vwd 08, aspx with vb, and asp.net 3.5... using aspnetsqlprovider, and the default membership login application, which created a db by itself. I've got my gmail smtp settings working in the web.config files, password recovery works fine. I'm trying to get the register page to send an email when a user is created, using gmail smtp, that has my normal email address as in web.config file, their email, username and password needs to be taken from teh createuserwizard form. subject
    Posted to Security (Forum) by nadude on 7/1/2009
    Filed under: createuserwizard smtp gmail duplicateemail confirmation email
Page 1 of 3 (27 items) 1 2 3 Next >