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 bkrike 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: *

  • Users: rsshetty
  • Content: Threads
  • Order by date
  1. rsshetty

    TemplateField in Child Gridview

    I have a gridview inside a datalist. In this gridview I have a templatefield. <asp:DataList ID="dlParent" runat="server" OnItemDataBound="dlParent_ItemDataBound"> <ItemTemplate> <asp:GridView ID="gvStudentList" runat="server" AutoGenerateColumns="false"...
  2. rsshetty

    Nested Gridview - RowDataBound Question

    I have the following structure on my aspx page: <asp:Repeater id="myRepeater" runat="server" OnItemDataBound="myRepeater_ItemDataBound"> <ItemTemplate> <asp:GridView ID="gvStudentList" runat="server" AutoGenerateColumns="false" >...
  3. rsshetty

    Gridview Layout

    I have a dataset of the following nature: Col1 Col2 Col3 -------------- ClassA 10 12 ClassA 13 11 ClassA 18 22 ClassA 20 42 ClassB 12 34 ClassB 32 27 ClassB 13 51 ClassB 12 32 ClassC 16 65 ClassC 12 33 I want the gridview to have 3 separate HTML tables on the web page - one for rows...
  4. rsshetty

    Open Window

    Hello, I have a rather tricky problem and I have run out of ideas. I have a page with a datalist that has checkboxes in it. At the bottom of the page, I have an imagebutton (not part of the datalist). When the imagebutton is clicked, I need to find out the checkboxes selected by the user, add...
  5. rsshetty

    Open a new Window

    Hello, I have a rather tricky problem and I have run out of ideas. I have a page with a datalist that has checkboxes in it. At the bottom of the page, I have an imagebutton (not part of the datalist). When the imagebutton is clicked, I need to find out the checkboxes selected by the user, add...
  6. rsshetty

    DataGrid Event Handler

    Hello, I am a .NET newbie and I have been trying to work out an exercise. using System; using System.Collections; using System.ComponentModel; using System.Data; using System.Drawing; using System.Web; using System.Web.SessionState; using System.Web.UI; using System.Web.UI.WebControls; using...
  7. rsshetty

    Database Permission ???

    First of all, I wasn't sure which forum to post so my apologies in advance. I am testing out a new web server for a site with ASP front end, COM middle tier and SQL Server 2000 backend. I have changed my host file to reflect an internal IP address connecting to that site so that I may test it...
  8. rsshetty

    Permission Denied

    First of all, I wasn't sure which forum to post so my apologies in advance. I am testing out a new web server for a site with ASP front end, COM middle tier and SQL Server 2000 backend. I have changed my host file to reflect an internal IP address connecting to that site so that I may test it...
  9. rsshetty

    Textarea line break

    I searched the forums and was unable to find a solution to this problem of mine. I take in data through a textarea and display it later in a <td> tag. I am unable to get the new line characters to display. While displaying the data I have tried replace(data,VbCrLf,"<br>") and...
  10. rsshetty

    70-229 or 70-315

    I am a programmer who is interested in acquiring an MCAD certification. I have 3 years of experience with ASP and SQL Server 2000. I have been studying and understanding the .NET framework. In my firm, in order to work on better projects and earn more, one has to demonstrate an increase in...
  11. rsshetty

    Insert pdf file into sql column

    I am using a DTS package to transfer a file from a location on the computer to a sql table column. To be more specific, I am using the bcp utility of sql server to do it. Here's my problem: If I knew the file's name in advance, then there would be no problem. However, the file is generated in a...
  12. rsshetty

    SQL Server Timeout

    Not sure if it shoud be a sql server question or else where. I was wondering if a user had a dial up connection and was trying to view a webpage that had some pretty heavy duty queries and there was a timeout error, would that be a sql server issue or is it because of the user using a dialup...
  13. rsshetty

    Full Text Search For clustered environment

    Does anyone know where I can get instructions on how to set up Full Text Search on SQL Server 2000 database sitting on a cluster? Thanks. rsshetty. It's always in the details.
  14. rsshetty

    SQL Server Timeout

    I am currently managing a website that uses ASP/COM and SQL Server 2000 Active/Passive cluster as the backend database. Over the last 2 weeks, I've been getting a tremdous amount of SQL Timeout errors and ASP script timeout errors. Does anyone know of any SQL Server performance analysis tools...
  15. rsshetty

    VBscript array to Javascript function

    Is it possible to send a vbscript array into a javascript function? If yes, how would I be able to do this? rsshetty. It's always in the details.
  16. rsshetty

    BIG problem with two forms and ENTER key

    I have two forms in the same page which load two different pages after hitting submit. The problem arises if I click the enter button. One of the forms gets submitted without taking in any of the form values. Is there any way I can control which form is submitted when the user presses ENTER...
  17. rsshetty

    Big problem with two forms and ENTER key

    I have two forms in the same page which load two different pages after hitting submit. The problem arises if I click the enter button. One of the forms gets submitted without taking in any of the form values. Is there any way I can control which form is submitted when the user presses ENTER...
  18. rsshetty

    Pagecount error

    Set adoConn = OpenConnection adoRS.CursorLocation = adUseClient strSQL = "exec sp_SearchData '" & Request.Form("Keyword") & "'" adoRS.Open strSQL, adoConn, adOpenForwardOnly, adLockReadOnly 'number of rows to cache at a time. Should be set to the same as...
  19. rsshetty

    SQL Server Full Text

    I just added The SQL Server 2000 Full Text search capability to a table in a database. While trying out search keywords, I noticed a problem. When I give, select * from message where freetext(*,'daytime') There are no results returned. However, when I give, select * from message where msg_body...
  20. rsshetty

    SQL Server Search

    Hello, I want to implement a search facility on the relevant columns of my database. Following is a brief overview of how the data is structured: Table1 : Message Columns: Forum_id, Thread_id, Subject, Message, Attachment name Table 2 : Forum Columns : Forum_id, Forum Name Table 3 : Thread...

Part and Inventory Search

Back
Top