|
Hi,
I was trying to read a CSV file and import into "data Table.
I have a issue in importing one of the colum to data table, which has greater then 255 char in CSV file.
pls advise how to import >256 char to data table.
thanks
iam a software engineer working for varisis technologies bangalore
|
|
|
|
|
There is no 256 char limit for data, unless your code imposes one.
Christian Graus
Driven to the arms of OSX by Vista.
Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
|
|
|
|
|
Hi ,
In visual studio 2008, C# I cna't able to import data from CSV more than 255 Characters.
Can advise Please ?
iam a software engineer working for varisis technologies bangalore
|
|
|
|
|
gud afternoon
i have a problem
i have a taextbox and i want to enter in it only 2 digits or 11 digits
example
12 valid
123 invalid
12345678912 valid
123456789123 invalid
plz. rply its urgrnt
|
|
|
|
|
|
\d\d|[0-9]{11}
sorry my mistake
|
|
|
|
|
thx sir
but i think this will take 9 digits
i want either 2 digits or 11 digits not in betewwen them
12 valid
1234 invalid
12345678912 valid
123456789123 invalid
|
|
|
|
|
did you try that? I guess you didn't, there's a pipeline in between \d\d [0-9]{11} it will allow either 2 or 11 digits only
|
|
|
|
|
|
why use two when one can do the same work
|
|
|
|
|
|
ur suggestion is not working dude!!!!!!!!!!!
|
|
|
|
|
\d\d|[0-9]{11} did you try this one?
|
|
|
|
|
in my project im using session to transfer data from one page(default) to other page(edit)..
how i need to transfer large data using with or without session..
as data is confidential i dint use query string...
session["headline"]=dr["headline"];
session["bodytext"]=dr["bodytext"];
"
"
"
//edit page..
TextBox1.Text=session["headline"].ToString();
TextBox1.Text=session["bodytext"].ToString();
"
"
"
........
|
|
|
|
|
well you can use cookie's as well but as you mentioned data is in large quantity then you might end up using session which itself isn't a good choice.
|
|
|
|
|
Gamzun wrote: well you can use cookie's as well but as you mentioned data is in large quantity
As well as the data is confidencial.
Abhijit Jana | Codeproject MVP
Web Site : abhijitjana.net
Don't forget to click "Good Answer" on the post(s) that helped you.
|
|
|
|
|
What is the problem with use of Session ?
Abhijit Jana | Codeproject MVP
Web Site : abhijitjana.net
Don't forget to click "Good Answer" on the post(s) that helped you.
|
|
|
|
|
how to get drive name in which operating system has been installed by asp.net coding.
thanks
You get the best out of others when you give the best of yourself.
|
|
|
|
|
Why on earth would you want that ? What could you possibly hope to do with it ?
Christian Graus
Driven to the arms of OSX by Vista.
Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
|
|
|
|
|
actually itext sharp not supporting directly some font family like 'Locida Console' but I got one solution that we can give path to font file that is place by default in drive where os is installed.
like: if OS is installed on C drive means - I want path="C:\\WINDOWS\\Fonts\\" so just I want to know drive only to resolve this issue.
You get the best out of others when you give the best of yourself.
|
|
|
|
|
your solution might work on your development environment but I'm quite sure it won't work on production server if it's third party's.
|
|
|
|
|
thanks for your kind response.
now I have got solution.
You get the best out of others when you give the best of yourself.
|
|
|
|
|
trilokharry wrote: now I have got solution.
Then Why Dont you share with Other..!May Be It will Helpul to others..!
LatestArticle :Log4Net
Why Do Some People Forget To Mark as Answer .If It Helps.
|
|
|
|
|
You cannot access files on your clients host computer, what fonts they have installed is irrelevant. I'd bet anything that the solution you found will not work when you deploy to a real server.
Christian Graus
Driven to the arms of OSX by Vista.
Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
|
|
|
|
|
hiii i m using access db and i have created my own login form.
I want that without login in user cannot go to my admin page.
hw can i do this...
plz guide...
|
|
|
|