|
bahar.ghara wrote: i need a code this software :(viual studaio,web asp .net ,languae c#)
See here[^] for many articles and samples.
|
|
|
|
|
hi. all
I m working on a project in which i want to extract the information of the SMS send by someone. My first question is How i'll save that SMS in my database. And second is i want to extract the information from that . For example someone send me a SMS writing his name,address,Zip code. Now i want to store this information in the database in different fields.
Can anyone please help me in this.
Thanks
|
|
|
|
|
An SMS is just text, your only real issue is how to get an SMS into a computer.
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.
|
|
|
|
|
Thanks a lot for the reply.
Actually i have two problem first how to save SMS in the database and solution of second i got. that how i'll extract the information from the database.
Can you tell me some solution. i found a SMS gateway Ozeki NG SMS Gateway . But can we use this in my application .
Thanks
|
|
|
|
|
Hi,
how to Get Database Schema/Structure in DataSet with complete Constrain,
and Relationship.
I have parent,Child table in Database.These table have relationship
how to get these tables schema with relationship ?
ali
|
|
|
|
|
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.
|
|
|
|