Thanks, Now I could get the query string and pass the bound fields values to the details page.
I should not show the tablename column in the searchpage,
when i write the sqlquery , i am getting the tablename column also displayed inthe frontend.
I tried to make the tablename visible property...
This is what is there in the view source.
I am not getting the values in the idvalue and tablenamevalue.
<tr style="background-color:Tan;font-weight:bold;">
<th scope="col"> </th><th scope="col">ID</th><th scope="col">Description</th><th scope="col">TableName</th>
</tr><tr>
<td><a...
Hello,
I am having a gridview which has records from more than one tables.
id,description and tablename are the columns.
I also have a hyperlinkfield as one of the columns.
on click of this hyperlinkfield I need to show the complete record with that purticular id in that purticular...
Hello,
I have added a database search funtionality to my webpage, it has a text box and search button, on the entry of some text in the textbox and click of the button, the results are displayed in the GridView .
Here I am having 3 tables in the database from which the search is performed...
Hello,
I have written the query string for the hyperlink "details"
like this, but I am not able to get anything, am i doing something wrong????
<asp:HyperLinkField NavigateUrl="~/SearchDetails.aspx?description={0},id={1},tablename={2}"
Text="details" />
when I click on the...
Can you please help me how to form the query sting with description and table name .
I am having eventsdetails.aspx and issuesdetails.aspx .
depending on the selection of the record that purticular .aspx page should be called.
where should I write this sql query too.
I am not knowing please...
My query is
"SELECT SUBSTRING(Issues.Description,1,100) AS Description FROM Issues WHERE Issues.Description LIKE '%" + TextBox1.Text + "%'"
+ "UNION "
+ "SELECT SUBSTRING(ScheduledEvents.Information,1,100) AS Description FROM ScheduledEvents "
+ "WHERE...
Hello,
I am having a GridView in which the data is shown is coming from two tables
The gridview has only one column.
DESCRIPTION.
I have added one hyperlink column ,details to the gridview,
When I click on that hyperlink , I have to go to the detailsview of that purticular record selected...
when i did dataitem = details, i get the same description which is already on the grid again displayed on the page in the links column.
I want to go to a different details page when I click on the details link..
How do I do that..
Yes, I could do that now.Thankyou.
I want to put a new details column which should be a hyperlink to the record details.
How can I do that because I am searching the text from 3 tables like this...
string strSQLQuery = "SELECT Issues.Description AS Description FROM Issues WHERE...
Hello,
I am trying with one table first to see if it works.
This is how i have written the select statement in the application and binding the dataset to the datagrid.
"SELECT IssueNumber , Issues.Description AS Description FROM Issues WHERE Issues.Description LIKE '"+...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.