Tagged Questions
0
votes
2answers
53 views
Open physical file on the server using ASP.NET
I want to open a physical file on the server on HyperLink click.
<asp:HyperLink ID="HyButton1" Target="_blank" NavigateUrl='<%#Eval("FullPath") %>' runat="server" Text="Open File" ...
0
votes
0answers
35 views
Why is my domain prefixed to the value of href of <a> and/or the url of window.Open()
Every so often (1/20) I use to have issues with the href value of a hyperlink being prefixed with my domain. Same goes for the url of window.open().
For example:
<a href="http://www.SomeURL.com" ...
0
votes
1answer
24 views
Asp.net Hyperlink brings complete file path with server
I have the next asp:Hyperlink in my page
<asp:Hyperlink runat="server"
CssClass="blueII_left"
Target="_blank"
...
0
votes
1answer
36 views
Resonse.Redirect works from VisualStudio but not from IIS
I've made a logout link with a asp.net HyperLink, with NavigateUrl="Default.aspx?Logout=1".
In the Default PageLoad I check if the Query string is null if not the session is terminated and the user is ...
0
votes
2answers
39 views
Get the text of hyperlink in gridview
I have converted some text to hyperlinks in gridview.
if (e.Row.Cells[3].Text == Session["uname"].ToString())
{
e.Row.BackColor = System.Drawing.ColorTranslator.FromHtml("#FFFFCC");
...
-1
votes
1answer
64 views
Add hyperlink/label to checkboxlist
How do I created a checkboxlist with a hyperlink/label next to (or under) the first list item?
E.g.
[] listitem1 *hyperlink*
[] listitem2
[] listitem3
OR
[] listitem1
*hyperlink*
[] ...
0
votes
2answers
27 views
Hyperlink not displayed properly
I want to display data on a page dynamically from database.
I have added a news box and I am displaying events list in repeater from a database. Hyperlink and Marquee is also used. But hyperlink is ...
0
votes
1answer
38 views
Preview a small picture when pasting Url/link into textbox
I want to make somethink like facebook, when people paste links into textbox, under the textbox a little image shows up which view how video could look like. how do they do it? Are there any jquery ...
0
votes
2answers
36 views
Change fore color hyperlink using datatable
i have hyperlink that the color of text will diffrent based on it value, if the value is 0, the color is black, if the value >0 it will red, here the code i have tried
...
0
votes
1answer
41 views
How to create a white-green button like a button from http://cmsaspnet.com/forum.aspx page?
Can you point me in the right direction to create blinking white and green links (which appear like buttons) which are englarged on hover, like from here http://cmsaspnet.com/forum.aspx#Focused ?
...
1
vote
2answers
75 views
Assign separate link to each repeater item in ASP .net
I was trying to develop a forum website (trying to mimic some of its features) and I am using Entity framework to get my data. I have to use repeater as my instructor asked me to do so.
I would be ...
0
votes
1answer
49 views
How to encrpt query string on hyperlink
i have two from on first form i have gridview with hyperlink on which i have code
<asp:HyperLinkField DataNavigateUrlFields="ID"
...
0
votes
1answer
96 views
asp:Hyperlink Object reference not set to an instance of an object
For all of my hyperlinks I keep getting this error and not really sure why.
I have looked at all of the other questions that are similar but nothing really has helped.
Here is the format of the ...
0
votes
4answers
140 views
Encryption of the link address <a href="http://www.mycompany.com> so it does not appear in source view on IE toolbar
This is probably a simple question but I can't seem to find what I am looking for on the web so here it goes. I have a link on my company INTRAnet site that senior management does not want the ...
3
votes
3answers
187 views
How to pass code behind variable via hyperlinkfield
This is my code behind in C# .
protected void Page_Load(object sender, EventArgs e)
{
Name = "Nitin";
}
I have a GridView in which there is a ...
1
vote
1answer
753 views
GridView to add HyperLink column dynamically (Server Side)
We read from XML and create columns in asp gridview. Also same XML is used to create columns in a data table. We populate that data table with desired data and bind data table to gridview using server ...
-1
votes
1answer
30 views
I have grid and hyperlink column inside it. How to prevent redirect if come condition is true?
This hyper link column show some counters. And if count is 0 i write "N/A" inside this column. I need transform this cell from hyper link to regular text or maybe something else. Main idea of this, ...
0
votes
1answer
74 views
How do make a tag cloud link to a specific paragraph or picture in asp.net
I've just started using the tag cloud feature for a new site i'm developing.
but now I've run into some problems
I can set the links in my tag cloud to go to a page, but I have many pages with a tab ...
-2
votes
3answers
171 views
How to databind alt tag in ASP.NET hyperlink control?
I have this tag: alt='<%# Eval("ImageDesc") %>' inside a DataList control
When I view the page in my browser the alt tag is always empty: alt=""
Maybe this is because the alt tag is not ...
0
votes
0answers
55 views
Count and display downloads in grid view
I have a grid view with a hyperlink in it.
Is there a way to count clicks on this hyperlinks? Its to count how many times a document is downloaded.
This is what I have so far...
<Columns>
...
0
votes
1answer
63 views
Is it possible to add an hyperlink at the bottom of a jqgrid?
I have a JQgrid which cotains only one column which contains some 4 values... I need to add a constant hyperlink after that 4 values which is independent of the values in the cell.. It should not be a ...
0
votes
0answers
132 views
A field or property with the name 'FormattedID' was not found on the selected data source.
I have an ASP.NET web form with two drop down menus. Once the user clicks on an item within the DD, a gridview with 3 columns displays the information. The 1st column, FormattedID, is a hyperlink ...
0
votes
0answers
44 views
Hyperlink uploads/downloads
I'm looking for some help with trying to upload files on a website in ASP.NET C#.
I'm currently trying to make a list of hyperlinks when the page is loaded for uploaded files (files in a certain ...
0
votes
1answer
124 views
Get a value from clicking on a masterpage hyperlink to child page
I am trying to create a website that will allow sharing photos (as a basic project),
and i encountered a problem.
On my masterPage there are links with category names and I need that when i click on ...
0
votes
2answers
215 views
Set value of variable upon link click
I currently have a listview on an ASP.NET webpage that displays "cottage" records from an Access database. The name of each cottage is displayed as a hyperlink so when clicked brings you to another ...
0
votes
1answer
64 views
Display links inside text in literal component
I am displaying data from database with Literal.
<asp:Literal ID="TextLiteral" Text='<%# Eval("Text")%>' Mode="Encode" runat="server">
I am using Mode="Encode" to prevent script ...
0
votes
1answer
208 views
Linkbutton's event in GridView not firing its event on 2nd Time
Seems to be a weird problem but my Linkbutton which is in GridView is not firing its event on 2nd Time.
In Detail:
I have a GridView which has linkButton in it which is firing an event. This event ...
0
votes
0answers
109 views
How to show a GridView within a clickable GridView data cell in asp.net WF
I have a column named PC in a GridView1 with HyperLink. What I am hoping to do is, if I click on one of the PC column cell (e.g. PC1, PC2) then GridView2 will be shown which must match to that PC_ID. ...
1
vote
2answers
146 views
Link not working in asp.net master page for some reason
I am working on asp.net website using webforms & i am facing strange problems for some unknown reason.
I am different banner in different areas of teh page & one common banner in the header ...
1
vote
2answers
86 views
Can you put a Literal as part of a hyperlink?
So my codebehind looks like this and is working correctly as text. But I need to add the value to a hyperlink
If pt.SelectedValue = "1" Then
litTier.Text = "/link.aspx"
Else
litTier.Text = ...
2
votes
1answer
122 views
List of Hyperlinks, buttons, whatever that open to new browser window
I have a need to create a small window inside of a ASP.NET Web Page(aspx) which displays a list of usernames, when you click the username, I need a new broswer window (not tab) to open up to a ...
0
votes
3answers
62 views
change from hyperlink to link btn
Had to change from asp:hyperlink to asp:linkButton, can no longer use navigateUrl in link button...any suggestions?
<asp:LinkButton ID="InvoiceLink" runat="server" ...
0
votes
1answer
101 views
e.row.rowType value return NULL
protected void passSubContractorInfoToNewPage(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
Sub_Contractor subC = ...
0
votes
3answers
201 views
how do i build an entire mailto anchor in asp.NET
I have a literal tag which is passed a list of string. one of the string i wish to pass to it is an email.. i would like the email to be an hyperlink. this is what i have got so far,
...
0
votes
2answers
188 views
Dynamically adding href target and open that in new tab
My Code is:
<a href='<%# Eval("websitename")%>' runat="server" target="_blank">
<asp:Label runat="server" Text='<%# Eval("websitename")%>'></asp:Label>
</a>
I ...
0
votes
0answers
17 views
ASP.NET HyperLink without referer information
How can I make a HyperLink in ASP.NET to point to a URL without sending the referer URL to destination ? or to send a fake referer
0
votes
2answers
130 views
HyperLinkField DataNavigateUrlFormatString Page
I have GridView with "HyperLinkField", when I click on one of the several names in the table this lead me to another page. Then I want to show some information about the clicked item. Here in this ...
0
votes
3answers
440 views
HyperLink Column in GridView
I have 2 columns in GridView FirstName and LastName. I want all rows in FirstName column to be in hyperlink. I have tried this but didn't work. How can I do it ?
Parser Error
Parser Error Message: ...
0
votes
0answers
117 views
Clicking on links redirect to the page set as the start-up page in ASP.NET web application
Good day. I'm currently working on an ASP.NET web application which makes use of master pages. I've got this master page containing the main navigation for the site. After a few months of working on ...
0
votes
2answers
225 views
How to add javascript to ASP.NET hyperlink control
How can I enter this URL into a HyperLink ASP.NET Control ?
<a href="https://plus.google.com/share?url={URL}"
...
0
votes
2answers
442 views
URL Navigation with HyperLinkField inside a gridview
I'm using a HyperLinkField inside a gridview, and I want to link to another URL + an ID.
<div id="searchResults" runat="server">
<asp:GridView ID="gvSearchResult" runat="server" ...
0
votes
1answer
271 views
binding navigateURL to datagrid
I've created a datagrid and linked it to one of my tables from my database,
then I want to add a hyperlink which should bind to a column from the table
<asp:DataGrid ID="DataGrid1" runat="server" ...
0
votes
3answers
401 views
Open file by Clicking on Hyperlink does not work
I want to click on the Hyperlink and the file (whatever file) should be opened in a new pop-up window.
Heres my Code:
HyperLink link = new HyperLink();
link.Text = ...
0
votes
2answers
696 views
how to create a hyperlink for file download in asp.net?
I have some files stored on my machine. When a user wants to generate a link the page should generate a hyperlink. This hyperlink can be used by any other user so as to download the file
0
votes
2answers
194 views
Add prefix of http:// or https:// with Eval value
How can I add the http prefix into my gridview eval value
<asp:HyperLink Target="_blank"
NavigateUrl='<%# Eval("SourceURL").ToString().Contains("http:")==true?
...
0
votes
1answer
245 views
use dynamic data in dreamweaver CS6 to populate a hyperlink
Basically I have a news page which stores headlines, stories, and a unique story identifier in a SQL database. I want to be able to create a hyperlink on a webpage to the pictures.
so when someone ...
1
vote
1answer
1k views
ASP.NET: How to make (link)button function as hyperlink?
How do I use an asp:Button or asp:LinkButton as asp:Hyperlink?
The existing Hyperlink just goes to another section on the same page: NavigateUrl="#Section2"
I want to do this in the aspx file ...
-1
votes
1answer
62 views
Hyperlink from database appears in wrong content holder
This is a really odd bug and for the life of me i can't figure out why.
I have a website divided to 3 content holders: an horizontal menu above , vertical menu on the right and main content holder.
...
0
votes
1answer
98 views
How can I add some conditional Javascript to my Asp Hyperlink's NavigateUrl property?
So I have a Hyperlink on my asp.net page. When the person clicks that link, it carries out some action. Now I want to be able to add a javascript alert (confirm, actually) as to whether the user is ...
4
votes
2answers
88 views
How to insert comma in the value which is present in Hyperlink column in gridviw
Here is my code
<asp:TemplateField HeaderText="Loss" SortExpression="Loss" HeaderStyle-CssClass="StrongText" HeaderStyle-Font-Bold="true" HeaderStyle-Font-Size="Medium"
...




