Home All Groups Group Topic Archive Search About

Passing a Variable from one web site to another for ASP

Author
31 Mar 2006 4:49 PM
James Robertson
I am new to the ASP and VB thing so be kind. Question I have is that
I have created an ASPX web site to use as an E-Mail page. But I want
to use this for a lot of users. Can I create the link on the WEB site
to mail to passing a variable from the WEB site to the ASPX web site
to E-Mail to? Hope I explained this correctly.

This is a response from another group.

There was no way for you to know it, but this is a classic asp newsgroup.
While you may be lucky enough to find a dotnet-knowledgeable person here who
can answer your question, you can eliminate the luck factor by posting your
question to a group where those dotnet-knowledgeable people hang out. I
suggest microsoft.public.dotnet.framework.aspnet.

I don't quite understand your question. But if you're asking how to pass a
variable from a non-aspx page to an aspx page, you can use a querystring
variable.

Yes and how to do that.  From HTML to ASPX.  More info and HELLLLPPPP...

Author
31 Mar 2006 6:12 PM
Chris
James Robertson wrote:
Show quoteHide quote
>  I am new to the ASP and VB thing so be kind. Question I have is that
>  I have created an ASPX web site to use as an E-Mail page. But I want
>  to use this for a lot of users. Can I create the link on the WEB site
>  to mail to passing a variable from the WEB site to the ASPX web site
>  to E-Mail to? Hope I explained this correctly.
>
> This is a response from another group.
>
> There was no way for you to know it, but this is a classic asp newsgroup.
> While you may be lucky enough to find a dotnet-knowledgeable person here who
> can answer your question, you can eliminate the luck factor by posting your
> question to a group where those dotnet-knowledgeable people hang out. I
> suggest microsoft.public.dotnet.framework.aspnet.
>
> I don't quite understand your question. But if you're asking how to pass a
> variable from a non-aspx page to an aspx page, you can use a querystring
> variable.
>
> Yes and how to do that.  From HTML to ASPX.  More info and HELLLLPPPP...

Passing in the Query string means passing the variable in the URL.  Do a
search on ASPX and query string, you'll get info.

Example:
http://www.somewebpage.com?Variable=Value

This example means that the recieving web site is expecting a value for
a parameter called Variable.

Hope this helps.
Chris
Author
3 Apr 2006 7:18 PM
James Robertson
OK so I have that and get it.  Now here is my code, I want to insert the
www.mydomain.com?email=usern***@domain.com to the string "U***@DOMAIN.NET" to
accept the variable from elier.  How and where?  Code would be really great. 
Thanks in advance.  I have learned quite a bit in the experience.

Partial Class _Default
    Inherits System.Web.UI.Page

    Protected Sub Wizard1_FinishButtonClick(ByVal sender As Object, ByVal e
As System.Web.UI.WebControls.WizardNavigationEventArgs) Handles
Wizard1.FinishButtonClick
        SendMail(TXTEMail.Text, TXTSubject.Text, TXTComments.Text)
    End Sub

    Private Sub SendMail(ByVal from As String, ByVal subject As String,
ByVal body As String)
        Dim mailServerName As String = "SERVER.SERVER.NET"
        Dim message As MailMessage = New MailMessage(from,
"U***@DOMAIN.NET", subject, body)
        Dim mailClient As SmtpClient = New SmtpClient
        mailClient.Host = mailServerName
        mailClient.Send(message)
        message.Dispose()
    End Sub

End Class

James Robertson

Show quoteHide quote
"Chris" wrote:

> James Robertson wrote:
> >  I am new to the ASP and VB thing so be kind. Question I have is that
> >  I have created an ASPX web site to use as an E-Mail page. But I want
> >  to use this for a lot of users. Can I create the link on the WEB site
> >  to mail to passing a variable from the WEB site to the ASPX web site
> >  to E-Mail to? Hope I explained this correctly.
> >
> > This is a response from another group.
> >
> > There was no way for you to know it, but this is a classic asp newsgroup.
> > While you may be lucky enough to find a dotnet-knowledgeable person here who
> > can answer your question, you can eliminate the luck factor by posting your
> > question to a group where those dotnet-knowledgeable people hang out. I
> > suggest microsoft.public.dotnet.framework.aspnet.
> >
> > I don't quite understand your question. But if you're asking how to pass a
> > variable from a non-aspx page to an aspx page, you can use a querystring
> > variable.
> >
> > Yes and how to do that.  From HTML to ASPX.  More info and HELLLLPPPP...
>
> Passing in the Query string means passing the variable in the URL.  Do a
> search on ASPX and query string, you'll get info.
>
> Example:
> http://www.somewebpage.com?Variable=Value
>
> This example means that the recieving web site is expecting a value for
> a parameter called Variable.
>
> Hope this helps.
> Chris
>
Author
31 Mar 2006 6:16 PM
Ken Tucker [MVP]
Hi,

        I would add a querystring to the webpage.   For example have the
user go to myemailpage.aspx?From***@home.com and use the request.querystring
to get the value for from


http://www.dotnetspider.com/qa/Question328.aspx

Ken
-----------------
Show quoteHide quote
"James Robertson" wrote:

>  I am new to the ASP and VB thing so be kind. Question I have is that
>  I have created an ASPX web site to use as an E-Mail page. But I want
>  to use this for a lot of users. Can I create the link on the WEB site
>  to mail to passing a variable from the WEB site to the ASPX web site
>  to E-Mail to? Hope I explained this correctly.
>
> This is a response from another group.
>
> There was no way for you to know it, but this is a classic asp newsgroup.
> While you may be lucky enough to find a dotnet-knowledgeable person here who
> can answer your question, you can eliminate the luck factor by posting your
> question to a group where those dotnet-knowledgeable people hang out. I
> suggest microsoft.public.dotnet.framework.aspnet.
>
> I don't quite understand your question. But if you're asking how to pass a
> variable from a non-aspx page to an aspx page, you can use a querystring
> variable.
>
> Yes and how to do that.  From HTML to ASPX.  More info and HELLLLPPPP...