473,661 Members | 2,421 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Please help. asp:hyperlink

How do I do this?
<asp:hyperlin k style="Z-INDEX: 144; LEFT: 4px; POSITION: absolute; TOP:
119px" runat="server" Text="Click Me!" NavigateUrl="ma ilto://<%
response.write( txtBEmail.Text. ToString) %>" ID="Hyperlink1" >BEmail
</asp:hyperlink>

I would like to construct a url based upon the contents of a textbox.
Any ideas?

Thanks,
Aaron
Nov 18 '05 #1
3 1972
Aaron: I would think you could go about it this way
--[In the html] --
<asp:hyperlin k style="z-index:144;left: 4px;position:ab solute; top:119px;" runat="server" text="Click Me!" id="hyperlink1" >BEmail</asp:hyperlink

---[And in the vb or vc, etc codebehind (Inline is fine as well)]----
Public hyperlink1 as Hyperlin

....(in the pageload, or another function
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArg s) Handles MyBase.Loa

hyperlink1 = txtBEmail.Text. ToStrin

End Su

Hope this helps.
-Andrew Wie

----- Aaron wrote: ----

How do I do this
<asp:hyperlin k style="Z-INDEX: 144; LEFT: 4px; POSITION: absolute; TOP:
119px" runat="server" Text="Click Me!" NavigateUrl="ma ilto://<
response.write( txtBEmail.Text. ToString) %>" ID="Hyperlink1" >BEmai
</asp:hyperlink

I would like to construct a url based upon the contents of a textbox
Any ideas

Thanks
Aaron
Nov 18 '05 #2
Thank you for your help. This is exactly what I need. In the page_Load
event I have added:

Hyperlink1.Navi gateUrl = "mailto://" & txtBMail.Text.T oString

Aaron
Nov 18 '05 #3
Hello Aaron,

In your code-behind file:

Hyperlink1.Navi gateUrl = "mailto://txtBEmail.Text" ;
How do I do this?
<asp:hyperlin k style="Z-INDEX: 144; LEFT: 4px; POSITION: absolute;
TOP:
119px" runat="server" Text="Click Me!" NavigateUrl="ma ilto://<%
response.write( txtBEmail.Text. ToString) %>" ID="Hyperlink1" >BEmail
</asp:hyperlink>
I would like to construct a url based upon the contents of a textbox.

Any ideas?

Thanks,
Aaron

--

--
Matt Berther
http://www.mattberther.com
Nov 18 '05 #4

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

Similar topics

4
4387
by: James P. | last post by:
Hello there, I have an asp hyperlink in a template page. In my user control page - code behind page that uses the template, I'd like to turn this link invisible in certain case. Is it possible? This is my hyperlink: <asp:HyperLink id="hplShoppingCart" runat="server" Font-Size="Larger" Font-Names="Arial" NavigateUrl="../forms/ProductOrder.aspx?fn=c">Shopping Cart</asp:HyperLink>
0
996
by: VB Programmer | last post by:
I have this hyperlink in a datalist that is supposed to automatically include the current "ListingId" field in the hyperlink navigateurl. <asp:HyperLink id="hlView" runat="server" Font-Bold="True" NavigateUrl='SearchDetails.aspx?ListingId=<%#Container.DataItem("ListingId")%>'>View</asp:HyperLink>&nbsp; It ALMOST works, but this is the link it's producing.. SearchDetails.aspx?ListingId=<%#Container.DataItem("ListingId")%>
2
1492
by: MrMike | last post by:
I am attempting to pass a parameter named "BackURL" into a asp:Hyperlink HTML control as shown below. "BackURL" is actually a variable defined in the page's code-behind. However, my current formatting below causes a "Page cannot be displayed" error, and is invalid. How can I properly reference my BackURL variable in the NavigateURL property of the asp:Hyperlink control? Thanks. <asp:HyperLink runat="server" Text="Update"...
9
2715
by: Leon | last post by:
What Am I Doing Wrong? Code Will Not Run, I Can't See The Error! Thanks. <asp:datalist id="DataList1" runat="server" RepeatColumns="4"> <ItemTemplate> <asp:HyperLink id=HyperLink1 ImageUrl= '<%# String.Format("Toyota/Images/Showroom/" & Container.DataItem("PathToDisplyPic"))%>' NavigateUrl='<%#
4
2212
by: Satya | last post by:
Hi all, The following code is throwing a run time error "The server tag is not well formed. " <ItemTemplate> <asp:HyperLink Runat="server" ID="lnkFile" NavigateUrl="javascript:OpenImage('<%# DataBinder.Eval(Container.DataItem,"FileName") %>');"><%#
9
28036
by: dana lees | last post by:
Hello, I am using asp:HyperLink in a c# asp.net application to open a new window in the following way: <asp:HyperLink ID="lnkSiteName" runat="server" Text='<%# DataBinder.Eval(Container, "DataItem.name") %>' NavigateUrl='<%# "site.aspx?id=" + DataBinder.Eval (Container.DataItem,"id").ToString()%>' Target="_blank"> </asp:HyperLink>
1
5731
by: rn5a | last post by:
Consider the following code: <script runat="server"> Sub Page_Load(obj As Object, ea As EventArgs) Dim sqlReader As SqlDataReader sqlReader = 'calling a function that returns SqlDataReader dlCart.DataSource = sqlReader dlCart.DataBind
2
1248
by: nicknack | last post by:
Hello. I have an asp:hyperling in my page and I'm trying to make it "clicked" from my code behind. Is this possible? I also tried it with JS but its look like the hyperlink doesn't have a "click()" method :( Any body have an idea?
2
2809
by: BobLaughland | last post by:
Hi There, I need a control on my site that is a hyperlink style control, but it must, 1) Have a property that can hold where the hyperlink is pointing to. (e.g. like the NavigateUrl property in the asp:hyperlink control). 2) Also can call my own method when the user clicks on the link (e.g. like the Click event in the asp:linkbutton control).
0
8428
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8851
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8542
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8630
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7362
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6181
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4177
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4343
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
1740
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.