I have a DataSet with two tables named "FirstResults" and "SecondResults". Both return the same number of rows and the same columns.
SecondResults may have some different information than FirstResults and it may have identical information.
I would like to get everything...
I have a DataSet with two tables named "FirstResults" and "SecondResults". Both return the same number of rows and the same columns.
SecondResults may have some different information than FirstResults and it may have identical information.
I would like to get everything...
Add an OnItemCommand to your datagrid. Give it a name such as OnItemCommand="CustomCommand_Click"
On your button, assign a CommandName that corresponds to the string shown below such as CommandName="WriteMessage".
Then in your code behind or function of CustomCommand_Click...
I'm working with Index Server and am getting an error of:
System.InvalidCastException: The data value could not be converted for reasons other than sign mismatch or data overflow. For example, the data was corrupted in the data store but the row was still retrievable.
When I try to return the...
Paul,
Thanks for responding.
When I add the OrderBy in the SQL statement it works fine, just can't get it to work in .net for the dataview. Do you have any other ideas?
The Response.Write is only for debugging purposes. Once I get the sort to work, I am going to remove it.
Thanks,
-Tim
Okay, I'm trying something else along with what I have above.
I've set up a DataView as shown below...
DataTable dt = new DataTable();
DataView dv = oDS.Tables[0].DefaultView;
dv.Sort = "BulletinDate DESC";
I'm now looping through the dataview as:
foreach (DataRow oDR2 in...
I have a dataset as
DataSet oDS;
and I'm populating it with data so that I can read it as
foreach (DataRow oDR in oDS.Tables[0].Rows)
{
...
}
However, I would like to be able to sort the DataSet before reading it all in the foreach statement.
I've tried...
I have a page that has transitions and a hot object interaction.
The hot object opens a popup window that can be closed. It should be able to be reopened multiple times.
My issue is that the interaction is not active until after the transitions have transpired. I am able to display the image...
I am having trouble getting the web connector to work properly between the web server and the application server where the reports are located.
I have configured the Web Connector like this:
The virtual path of the web server is E:\Reports and the Actual Path on the application server is...
I am using ASP to create word object for spell checking purposes.
The object works sometimes and I've noticed, it depends on where I put it in the page. If I have the code at the top, it runs perfectly. However, if I have it in the middle around If statements, it runs incorrectly and gives me...
I am accessing reports from an ASP page passing them to the report that is displayed in the ActiveX viewer for Crystal.
I am using the Native driver for SQL Server to access the database.
The reports run fine most of the time. Every once in awhile a user will be prompted to enter in the UserID...
I am accessing reports from an ASP page passing them to the report that is displayed in the ActiveX viewer for Crystal.
I am using the Native driver for SQL Server to access the database.
The reports run fine most of the time. Every once in awhile a user will be prompted to enter in the UserID...
I am using the ActiveX viewer to view reports online. When a user goes to a report, they are prompted to download a file that will allow them to view the report.
The file is an ActiveX Control named Crystal Report Viewer Control and it is saved in C:\WINNT\Downloaded Program Files.
Since...
Jared,
I fixed it a different way.I added an additional hidden field in the form named QuestionDescription with a value of "".
In javascript I took the last element of the array and reset it to descr.
It was actually an easy fix, I just never thought of doing it like that.
Thanks...
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.