Search results for query: *

  • Users: nofu1
  • Content: Threads
  • Order by date
  1. N

    excel extension issue

    I have a code similar to this below C#Copy using(webclient wc = new WebClient()) { string fileinfoname = "test_one"; string pathinfo = @"C:\testfolderinfo" + fileinfoname + ".xlsx"; wc.downloadFile("www.testurl.com/report", pathinfo); } I am currently experiencing a situation where the file...
  2. N

    convert/cast of nvarchar

    Hello all; This has been puzzling me for a while. I have a table structure similar to this below to hold french word create table metest ( id numeric ,desc_info nvarchar ) Hence, i know nvarchar tends to store the data as bytes, thus when i write select id, desc_info from metest, how do i...
  3. N

    Sql server integration services

    Hi all; I am still new to SSIS. I have an SSIS service that does an ETL process for me utilizing a flat file (csv). In sql server I created a table with the following columns below create table testme ( id int identity (1, 1) ,date_load datetime ,source_info varchar(10) ,desc_info varchar(20)...
  4. N

    Question sending an HTTP request/POST to a website

    I am still a beginner in c#. I have a console application. In javascript, we can do the following document.getElementById("myText").value = "Mary; which is used to set an HTML element. Is this possible in a console application that sending an HTTP requests to a website or should the...
Back
Top Bottom