Mobiles :: How To Send Bulk Sms
Jan 23, 2010I want to send and receive sms in my asp.net website.I am currently targetting users in India.I may need to send the same sms to thousands of users at the same time.How can I achieve this?
View 4 RepliesI want to send and receive sms in my asp.net website.I am currently targetting users in India.I may need to send the same sms to thousands of users at the same time.How can I achieve this?
View 4 RepliesI am working on a project that requires a part of it to send Bulk SMS to a particular town( eg Toronto) or any other town, I can generate the coordinates of the town, but my problem is how to get the GSM numbers in the town.
View 3 RepliesI want to send sms to the member of my website in USA from my website. how can i progress?
Is it required to buy a web service to send SMS. if So what web service is the best? Is there any free webservice to send SMS? What is that? My main terget to send sms to USA member.
Can i write my own web service to send SMS? If so what is the process.
I have a web form which will send bulk email to our site suscribers, they maybe hundreds or even thousands.Is System.Net.Mail optimal for this purpose?
View 18 RepliesI need to send a info email to a lot of emails in a table I have. I managed to find some code on the internet and I made the connection so that everyone got their email correctly.However I want to display the email recievers their names in the body text. Like "Hi Mr Stark!My code only sets the name of the last name in my table.This is my code:
[Code]....
Created a thread in master page and have called email function to select mails which are not sent from database. Mails are going but the problem is whenever a user clicks mails are going multiple times.
View 1 RepliesI have users table in database that contain their Email address and I have 2 textbox
1-txtSubject
2-txtBody
and 1 button btnsend in my page...
I want when I click on Send button it send to all users email that contain txtsubject and txtbody ...
how I can do it?
I d like to send bulk emails as part of custom reminder service for my website (500 emails approximately).Which is the better way to send all these emails without spamming? I was thinking of sending 15-20 emails per minute, to avoid overloading mail server. Is it better to use multiple TO recipients or use BCC?The reminder service will run on a background task.
View 5 RepliesI want some tips regarding sending mail ,I want to send bulk mail from my web application in c#. so ,what should be the best code for this and also what should be the best configuration used in the smtp server. because my current system fails to send 100 mails out of 400 mails in smtp server. I aslo used theading for sending this mail in batch of 30 mails in every 20 minute but it is not working . I want solution of both in my c# code and smtp and also is there any new solution in new technology like web services or any other option .
View 1 Repliesam developing my project in asp.net 2.0 and c# and Now I am sending Text sms using Third party API.Now I want to send voice sms to mobiles.Do I need to develop it as mobile application or I need to purchase 3rd party API. some reference links for this process.
View 1 RepliesI am new to asp.net c sharp; right now I am working on one project, in that I need to send the [short message service] to mobiles, I don't how to send the message to mobile. Please someone help me, give some ideas or some links where I can find the sample code or sample projects
View 6 RepliesHow can I send the news of my site on Mobile or use mobile Page?
The site is asp.net
i have a gprs device that logs data to a webpage.i am using get method for the data transfer from device to web application. This function is working perfectly. what i want to do now is by clicking a button to send a get method from server to device in order to triggger it to do some actions. the device is correctly receiving the get method and sends a responce. The problem is that the http responce the device is sending might be wrong because the browser is waiting until timeout and then it displays the responce. does anyone knows what is the http responce format?
View 1 Replieswanted to know what is the easiest way to interface a mobile phone device with an online system. I have literally NO knowledge in this domain. However, I am brainstorming on possibility of an online application that will allow me to backup my data in nokia set 3110 such as my Address book in the application and restore it. This I want to achieve without connecting my phone to any PC. I am thinking on some way to achieve this by leveraging mobile phone line only. I beleive it may require my application to connect to mobile phone through mobile phone network. Currently my mobile phone line subscriber is offering Address Book backup/ restore service with some charge. I want to see if I can replicate similar features. I would really appreciate if you can give a direction to my random thoughts.If anything is not clear then please feel free to inquire. I look forward to your kind response.
View 2 RepliesLooking to build a web application which provides a platform for sending bulk SMS on reasonable rates. Whether i have to sign an agreement with GSM providers for sending SMS or is there an alternative for this? If so, how can i embed the SMS service with my application code?
View 1 RepliesNow i got it to work but the bulk copy is inserting the rows twice, instead of once
and i know the table has the correct rows because i can see it in the gridview correctly
I FIXED THIS PART
my program works fine when i run it in debug mode but not when i place it on the server, it doesnt run the stored procedure when i put it on my server.
[Code].....
have the DataTable having thousands of record ,I need to modify the rows using some c# function,I do not want to iterate through each row.So how can I use linq for it.
View 3 RepliesI'm working on a project for my companies intranet which requires that multiple attached documents to the main DTO of the project need to be autoprinted in the background. The problem is it's a web project and I want the printing to be done under the surface. Now because it's on an intranet only certain people can use it and I can set a communal printer in the background but I'm wondering hwo to actually print under the surface, the attachments could be anything from photocopy gifs/jpegs to pdf/word docs. Should I use the PrintDocument class? Not really sure how to implement this one.
View 1 RepliesI'm using checkbox to select the rows in the gridview. How do I insert the muliple selected rows into the table opening the connection for only one time.
View 2 RepliesI have to update the users based on input value..
here is my code..
[Code]....
using this I can update only one user perfectly but I need to loo update all users based on generic Filedset values?
Lets say i have a button control on a page and a label control. On clicking this button it performs series of actions say Action 1 , Action 2. Action 20 which will take say approx 1 hour to complete. What i need is, once this long processing is started, My web page should show the status of each action on label. Eg. After clicking a button, Label1 text should be "Action 1 is started" after Action1 is completed and Action 2 is started ,.... Label1 text should be "Action 1 Done...Action 2 started" I need this so that my user can see whats the current state of processing.
View 7 Repliesi'm dealing with an ASP.NET 4.0 Web Forms Application in which the DAL is built with a combination of LINQ-SQL and classic ADO.NET (for auditing transactions, and bulk updates).
I have an admin page on the site which performs an update on a bunch of records (could be thousands), and not to mention there is T-SQL triggers in place on those records. Needless to say, its a killer of an update.
So of course, the page is timing out. The update transaction is performing with the following code:
db.ExecuteCommand("UPDATE [tblFoo] SET [IsFoo] = 0 WHERE [Bar] = {0}", bar.Id);
So it's a classic ADO.NET bulk update.
What i've tried to do is make the call to this method asynchronous, by firing off a thread on the button click on the form:
[code]...
The method OnMyAsyncMethod simply executes the above ADO.NET call.
This solved the UI problem, being the page now posts back and refreshes immediately. But then around 30 seconds lateri see that wonderful little flashing light on my Visual Studio toolbar - "an unhandled exception has occured, would you like to attach to process, etc".
So of course, now the actual call in the DAL is timing out.
Am i doing this wrong - is there a way i can perform the update transaction (db.ExecuteCommand) totally asynchrously?
Hopefully you see what im trying to do - i just need to fire off a killer of a T-SQL transaction. The only thing i need back from the call is the number of rows updated.
This may not the best place for this question, but I'm going to give it a shot. I have a large (3GB) file that contains maybe 100 fields, CSV. ALL FIELDS are surrounded by double quotes, a standard CSV file. So, it looks like this:
"12345678", "SMITH", "JOHN", "GARLAND, TEXAS", "75043","","","","37" (and so on)
I need to import this into SQL server but have been unable to find any simple way of doing so using the BULK INSERT. I could obviously do it with some coding [a lot, given the number of fields] but one would think a product like MSSQL would have this most basic of functionality built in.
I have a database of members that I would like to add to a asp.net membership. The client records have no username or password currently, just a table with name and email. how I could do a bulk insert and give each client a username and password.
View 2 RepliesI am making a website. It searches some data from database. When It fetch 1000 records, it runs very softly but when it fetches more then 10000 records then it doesn't display data for second page and I get a error that "Internet Explorer cannot display the webpage".
I also want to share the functionality of the site. It display only 10 records in the page and rest of data will be kept on the object. When user click on next page then it fetches data from that object only. It doesn't go back to database.
It workds nicely when it fetches 1000 records but it gives error when it fetches more then 10000 records.