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