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 derfloh 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. dand11

    Need to create a dll for website

    I also tried to set the website and webservice up by copy and pasteing their folders onto to the server and pointing the virtual directories to them but I get the following error: Event Type: Error Event Source: WSClient Event Category: None Event ID: 0 Date: 11/13/2008 Time: 12:42:23 PM...
  2. dand11

    Need to create a dll for website

    Oh I meant to say that I'm actually trying to create a dll for a web service.
  3. dand11

    Need to create a dll for website

    I don't see an option for "Web Application" project in VS 2005
  4. dand11

    Need to create a dll for website

    I have a website which was originally developed in asp.net 1.0. It consumes webservices written in 2.0. I had to make a change to the 1.0 website and I'm using VS 2005. I understand that ASP.NET 2.0 doesn't create dlls. Is there a way to create the website dll in VS 2005?
  5. dand11

    IIS: installing client and webservice

    I have been asked to install a copy of a client web site and web service on another machine. I have copied the files over and created the virtual directories. My question is: Do I need to change the XML namespace for the webservice? Is there any other things I need to do that I haven't mentioned?
  6. dand11

    SoapException

    I have a web app that uses a webservice. It has been running fine for a month until today. I'm new to ASP.NET and webservices. I did copy the dll from another site that was working and pasted it into the bin folder of the site thats getting the error. Here is the error I'm getting. I apologize...
  7. dand11

    Delete records from datatable where column value between...

    I was able to correct it. There was another method that needed to be called before I called these. Thx for everything.
  8. dand11

    Delete records from datatable where column value between...

    I was able to get by the cast error and have been able to delete the rows from the dataset but now I'm getting a DeletedRowInaccessableException error. Below is my code I'm using to delete rows from the datatable. private void RemoveRowsForPaging (DataTable myDataTable) {...
  9. dand11

    Possible to execute several SQL Statements at one time with MYSQL?

    Thx s2001, I was afraid of that. I'm trying to take care of it on the C# side.
  10. dand11

    Delete records from datatable where column value between...

    Please disregard the following statement in the above code: oLog.EnterEventLog("After", System.Diagnostics.EventLogEntryType.FailureAudit);
  11. dand11

    Delete records from datatable where column value between...

    Thanks jmeckley. I am now getting an error with the following code: The error states "InvalidCastException - SearchForVehicle Specified cast is not valid." The error happens at my declaration of the variable "id". Why am I getting this error? foreach (DataRow row in myDataTable.Rows)...
  12. dand11

    Delete records from datatable where column value between...

    I was hoping that there may be a method or function sort of like: MyDataSet.MyDataTable.ROWS.Delete(1,10) Instead of having to loop thourgh them all.
  13. dand11

    Delete records from datatable where column value between...

    Thanks but I don't want to delte it from the database just from the DataTable in the Dataset.
  14. dand11

    Delete records from datatable where column value between...

    I have a datatable where I need to delete records from it where the primary key is between say 1 and 10. How can I go about doing this efficiently?
  15. dand11

    Possible to execute several SQL Statements at one time with MYSQL?

    ...incident i on v.CN = i.CN INNER JOIN ticket t on i.CN = t.CaseNumber WHERE LTRIM(v.License) = 'ABC123' ; Select * from tmp_Veh where RowNum > 0 and RowNum < 10; DROP TABLE tmp_Veh; UNLOCK TABLES;[\code]
  16. dand11

    Select into temp table

    Should I have the semi colons eve thought there are "UNION" keywords between them?
  17. dand11

    Select into temp table

    The question mark is replaced with: 'FL'
  18. dand11

    Select into temp table

    Thats actually a MYSQL query the error I'm getting is below: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Create temporary table tmp_Veh as SELECT 'OFFENSE' as TblSource ' at line 2
  19. dand11

    Select into temp table

    ...v inner join incident i on v.CN = i.CN INNER JOIN ticket t on i.CN = t.CaseNumber WHERE LTRIM(v.Lic_Stat) = ? ALTER TABLE tmp_Veh ADD Column RowNum AUTO_INCREMENT Select * from tmp_Veh where RowNum > 0 and RowNum < 10 COMMIT
  20. dand11

    Select into temp table

    Is it possible to create a temp table on the fly as with the following SQL Server TSQL Script? Select 'Some value' as Col1 into #temp from myTable where primkey > 0 ALTER TABLE #temp ADD RowNum IDENTITY(1,1)

Part and Inventory Search

Back
Top