Hi,
In my code i create a HyperLinkField object. Depending on a database field value, i want to set the NavigateUrl property. This is my problem, i don't know how.
With:
objHF.DataNavigateUrlFields = new[] { "id", "Stype" };
i get my database field. Now i want to check the Stype value. Depeding on this value i want to set the page ...
Hello,
I am using asp.net and I'm working with a gridview. I have one of the fields in my GridView set up as a HyperLinkField that represents the name of the category. I pull the name and Id from a database and I can never be sure what they are because they are added separately. I want to be able to pass a changing CategoryId to another...
Hi,
I have an ASP.NET(2.0 using C#) web app, in which I have a gridview on a page(My_Page.aspx). The gridview gets its data from an Oracle database. I have a Hyperlinkfield in the gridview, which when clicked, postsback to the same page, but with details of the item clicked(using QueryString).
<asp:HyperLinkField DataNavigateUrlFields...
I wish there was a ToolTip field in HyperLinkField as there is one in HyperLink.
I'm creating a HyperLinkField by code before binding to my data source:
HyperLinkField hl = new HyperLinkField();
hl.DataNavigateUrlFields = new string[] { "col" };
hl.DataNavigateUrlFormatString = "{0}";
hl.DataTextField = "Foo";
Is there any way to als...
Hi,
Stage1
My web portal checks if there is a csv file selected and then uploads a csv file through file upload option saving i
tonto a tempdatabase on sql Server and displays the data on the grid view. The grid view contain fixed 29 columns with a hyperlink named (view)
and a check field.
Stage 2 & 3
What I want is, once the file ...
Hi everyone,
Can someone please explain to me how I can include a boundfield (Emp_ID) to the hyperlinkfield (IDNumber) in a code generated gridview using C#? So that the url string would be "'../Pages/Home.aspx?Emp_ID=(Emp_ID)'>(IDNumber)"
Thanks
Snippet code below:
IDColumn.DataField = "Emp_ID";
IDColumn.Head...