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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

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

    database search

    Hello, I am having three tables in the same database, these three tables have column of type varchar(max). Now In my web page i have a text box and a search button . When the user enters a string in the textbox and clicks that search button, then the three tables have to be searched for that...
  17. venuchalla

    How to get the detailsview on the new page

    Hello, I have a gridview on the select of any row I want to show the details of that selected row in a details view in a new page. I am able to do this in the same page where the gridview is there, but how can I show it in the new page?? thanks,
  18. venuchalla

    How to keep the gridview's column of specific height

    I could do that in the Edit template but I am not able to display like that. Is there a way instead for me to show only few characters (40 characters ) instead of the complete text in the column and give a link to show the complete text in another aspx page or so, Can you please suggest me...
  19. venuchalla

    How to keep the gridview's column of specific height

    I want to keep the width and height fixed. Thanks,
  20. venuchalla

    How to keep the gridview's column of specific height

    Now the height is getting adjusted to show all the text retrieved , but when that is happening the size of the record is increasing and the page is full with all the big sized records only. So I want to keep the height without adjusting automatically so that , all the text retrieved in that...

Part and Inventory Search

Back
Top