Tagged Questions
0
votes
1answer
32 views
GridView and Hyperlink
I am new to VB and programming in general, however, I am currently trying to develop a simple application where you can add and save daily records to a database. One of the columns in the database ...
1
vote
1answer
777 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 ...
0
votes
0answers
56 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
0answers
134 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
1answer
210 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 ...
1
vote
0answers
118 views
Android - Loading Multiple Images from server in GridView
I want to load multiple images from server in GridView in Android by not using individual links, but by just using single link.
If anyone know, please tell me.
0
votes
0answers
111 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. ...
0
votes
4answers
1k views
how to bind value to hyperlink in gridview in c# code behind
I have a custom grid on which i have binded data in my c# code behind. I have given a hyperlink field to one of my column. If i click the hyperlink value, it should navigate to the details page of ...
0
votes
3answers
450 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
395 views
Opening gridview LinkButton not working for new window/tab
I have a gridview that's defined like so:
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" DataKeyNames="columnid" DataSourceID="SqlDataSource1"
<Columns>
...
0
votes
2answers
453 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
2answers
200 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?
...
-2
votes
1answer
258 views
How to make hyperlink in asp .net grid view
I have a table in SQL Server with column X,Y,Z
which I have retrieved in gridview in ASP.Net.
Now I want the first field (example; X) to be a hyperlink as I click to open a new page. How can I do ...
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"
...
0
votes
1answer
188 views
How to split Hyperlink column data into comma seperated value
I am trying to split value which is present in hyperlink column of gridview.Iam unable to get what i need.
Here is my code
<asp:TemplateField HeaderText="Budgeted Profit" ...
0
votes
2answers
445 views
How to change URL of hyperlink in gridview on RowDataBound
I have gridview with template field that contains a hypelink. I'd like to change the URL of the hyperlink based on some logic in a specific field of my SQL data (data table bound to grid). I'm ...
0
votes
2answers
1k views
How to add Hyperlink dynamically to GridView Row in asp.net
I have a GirdView populated with text from code behind, I want to have a row contains a text and another row contains a HyperLink .
I use the following code :
Dim dtFull As New DataTable()
...
0
votes
1answer
250 views
ASP Net Gridview HyperLinkField to navigate to URL form database
In my database I have a table with a list of websites and names. I need to populate my gridview HyperLinkField with the names, and each name linking to its correspondnig URL in the database.
In the ...
0
votes
4answers
252 views
How do I replace a Hyperlink in a Gridview Column with an image, depending on the text in the column?
Question pretty much says it all. On my aspx page I have a GridView and under Columns I have a bunch of BoundFields, one of which is a TemplateField
<asp:TemplateField HeaderText = ...
0
votes
2answers
823 views
Dynamically add HyperLink in GridView
I have two types of code:
1st:
<Columns>
<asp:TemplateField>
<ItemTemplate>
<asp:HyperLink ...
0
votes
0answers
125 views
Cannot access the HyperLinkField value in a GridView during RowUpdated event
I'm using asp.net v2 (.net 3.5) and I have a GridView which is bounded to some fields in the database:
<asp:BoundField DataField="User" HeaderText="User" SortExpression="User" />
...
0
votes
5answers
5k views
GridView HyperLink field in C#
Take a Look at the following code:
<asp:HyperLinkField
DataNavigateUrlFields="NameID"
DataNavigateUrlFormatString="names.aspx?nameid={0}"
DataTextField="name"
...
2
votes
3answers
3k views
C# GridViews - Make the cells in one column link to another page when clicked
I have a grid view which is populated from a database.
I need to make it so that each of the cells in a particular column, when clicked will link through to a second page and pass the cell's text ...
0
votes
4answers
418 views
Error in OnClientClick in C#?
I want a popup to be populated to user before deleting the record
I have tried OnClientClick and class to handle it with JavaScript/jQuery but with no success
ERROR
Type ...
0
votes
1answer
1k views
Using window.open in gridview hyperplink
I have a gridview in which I have a column and opening a page through query string. The Column code is here:
<asp:HyperLinkField DataNavigateUrlFields="LCNumber" Target="_blank"
...
0
votes
2answers
409 views
Hyperlink a column with relative path value of another column in mysql database
I am an extreme beginner and have done quite a bit of searching on this with not much success-- and am not sure if this even possible/makes sense: I am trying to create a job board database and ...
1
vote
2answers
196 views
Metro : HyperlinkButton not responding to click event in a GridViewItem
Here's my problem, i have a HyperlinkButton inside a GridViewItem which doesn't respond to my click.
I know there is a lot of properties settable corresponding to click management like ...
2
votes
1answer
1k views
Dynamically creating a datatable with one column as hyperlinks
First off: I am aware that there have been some vaguely similar requests on here already, but none give a complete solution to my problem, and I'm at my wit's end trying to piece together a solution.
...
1
vote
1answer
1k views
Conditional link in GridView TemplateField with NavigateUrl also conditional ASP.NET 4
I am new to ASP/C# and am trying to create a HyperLink in a GridView Template that will:
a) not display if a database value is NOT true (I have accomplished this)
b) query the SQL database to see if ...
0
votes
1answer
186 views
Display Hyperlink field on rows based on value from the database
How do I dynamically display the 'Edit' on the hyperlink field based on the values on the rows, generated from the database.
N/B.: the gridview automatically generates rows.
0
votes
2answers
1k views
Add a download Hyperlink in gridview in visual studios 2010
My problem is simple, I would like to make the last column of my gridview to be a download link to a file in local on my computer.
I have my datatable with 3 columns :
User_id, request_id, FilePath
...
1
vote
1answer
619 views
How to get the value of DataNavigateUrlFields?
I have a DataTable and it is passing a value though a DataNavigateUrlField.
In code what do I type to get that value, e.g.:
MessageNum = DataNavigateUrlField[MessageNumber];
Here i have ...
1
vote
4answers
4k views
Add a clickable image to a GridView in ASP.Net
I'm trying to add an delete image at the end of each row in a GridView. I want the user to be able to click the image to delete the row.
So I've used a HyperLinkField to create a link to another page ...
0
votes
1answer
224 views
Error trying to add to the navigation url of a hyperlinkfield
Am trying to add to the navigation url in a hyperlink field.
I have 5 columns on my gridview, the last being
<asp:HyperLinkField DataNavigateUrlFields="vID"
...
0
votes
1answer
121 views
in which event can i handle the hyper link in the grid view?
I have a gridview which contains a hyper link as a template field ,now i wanna to use row command to handle the click on this hyperlink but,no command name or command argument for the hyper link .How ...
0
votes
1answer
457 views
adding url to the hyperlink field in gridview
I have a dynamic grid view. I add column in page load.
I use this code for add Hyperlinkfield :
string[] url = new string[1];
url[0] = field.InternalName;
HyperLinkField link = new ...
0
votes
2answers
223 views
Publish two types of field information on same column in ASP.Net grid view
I want to publish two types of information on same column in ASP grid view.
<asp:BoundField DataField="name" HeaderText="name" SortExpression="name" />
<asp:hyperlinkfield text="Detail" ...
1
vote
1answer
166 views
in hyperlinkfield, how to query string escape values?
I have a Hyperlinkfield in a GridView that has DataNavigateUrlFormatString="blahblah/dostuff.aspx?id={0}". But then I hit a case where the field substituted for the {0} has a plus sign in it. It is ...
0
votes
1answer
249 views
mailto Hyperlinkfied in gridview
i want to add hyperlinkfield which takes its value from another field.
i managed to do that but the problem is with the mailto URL,
how do i command to take another field text and mailto: ?
...
0
votes
1answer
1k views
How to map DataNavigateUrlFormatString of Gridview Hyperlink Field dynamicatlly vb.net?
Hope you are having a nice day.
I am developing a gridview for a list of songs with a hyperlink field like below. I left unnecessary codes by the way. The purpose of hyperlink field is for user to ...
2
votes
2answers
2k views
link in gridview to details page
What I'm trying to do is create a Gridview and in the grid have a HyperLinkField it send me to a detail page for that item, I have the part that filled the grid and the link and how to pass the id ...
3
votes
4answers
5k views
How to programmatically replace an HyperLinkField in a ASP.NET GridView
I have an ASP.NET Web Forms application. In my application I have a GridView that works smoothly. I have several text fields and the last one is a <asp:hyperlinkfield>.
Now I would like to ...
1
vote
1answer
503 views
Multiple DataNavigateUrlFields… one from datasource, one from drpdownlist
Lets say I have a drop down list and a grid view on a page like this
<asp:GridView ID="gvCategories" runat="server" >
<Columns>
<asp:HyperLinkField DataTextField="CategoryName" ...
0
votes
1answer
1k views
How to use a hyperlink in a gridview to execute a function in aspx code behind
How to use a hyperlink in a gridview to execute a function in aspx code behind when clicked passing a variable to that function which is some value of a cell within the row the hyperlink exits in.
...
2
votes
2answers
392 views
Dynamically generate hyperlink from 2 columns in GridView
I hope I can explain this clearly:
I have a GridView that only displays an ID and Name field from an EntityDataSource.
I want to add a third column that will contain a dynamically generated ...
2
votes
3answers
1k views
How do I convert a BoundField to a HyperLinkField?
I have a GridView (gv) bound to a dataset (ds). Columns[1] is bound to a field in ds named orderFilename; Columns[6] is a date field.
If Columns[6] is null, I want Columns[1] to appear as text; if ...
2
votes
3answers
3k views
HyperLink field in Gridview (Url Navigation)
At work there is a gridview and it has the following syntax
<asp:HyperLinkField
DataNavigateUrlFields="NameID"
DataNavigateUrlFormatString="names.aspx?nameid={0}"
...
0
votes
2answers
631 views
the DataNavigateUrlFormatString escape problem in asp.net's HyperLinkField
I am usin the HyperLinkField in my asp.net application.
However when I use the DateNavigateUrlFormation I meet some problem:
This is the code :
<asp:hyperlinkfield ...
2
votes
2answers
9k views
How to bind the URL of a GridView HyperLinkField when the bound value contains a colon?
I'm trying to bind a GridView HyperLinkField such that the bound column is used as a parameter value in the URL. Pretty standard stuff - nothing fancy, but the binding fails when the bound column ...
1
vote
3answers
2k views
Dynamic parameter passing through hyperlink in a DataGrid in asp.net(C#)
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False"
BackColor="White" BorderColor="#CC9966" BorderStyle="None" BorderWidth="1px"
CellPadding="4">
...



