Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by venuchalla

  1. venuchalla

    Retrieve data in detailsview on click of hyperlink

    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...
  2. venuchalla

    unable to get the data from the gridview

    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">&nbsp;</th><th scope="col">ID</th><th scope="col">Description</th><th scope="col">TableName</th> </tr><tr> <td><a...
  3. venuchalla

    unable to get the data from the gridview

    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...
  4. venuchalla

    Unable to get details on click of the hyperlinkfield

    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...
  5. venuchalla

    Retrieve data in detailsview on click of hyperlink

    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...
  6. venuchalla

    Retrieve data in detailsview on click of hyperlink

    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...
  7. venuchalla

    Retrieve data in detailsview on click of hyperlink

    i want to show that record selected in the detailsview
  8. venuchalla

    Retrieve data in detailsview on click of hyperlink

    I have done the same way you suggested, now How should i goto that purticular details view on click on the hyperlink. Thanks
  9. venuchalla

    Retrieve data in detailsview on click of hyperlink

    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...
  10. venuchalla

    Retrieve data in detailsview on click of hyperlink

    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...
  11. venuchalla

    database search

    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..
  12. venuchalla

    database search

    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...
  13. venuchalla

    database search

    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 '"+...
  14. venuchalla

    database search

    I am able to do the webpages search , but I want to do the database search and show the results in a gridview. Help please
  15. venuchalla

    database search

    NO, Table -- Issues -- columns -- Description varchar(max) and table - scheduledevents - columns - information varchar(max)

Part and Inventory Search

Back
Top