i just build one web application using microsoft visual studio 2008 ..so it done well...and after several testing..the problem has been faces up..here the problem situation.
my web application need to send data logger to one computer using HttpWebRequest and HttpWebResponce ...so i set at web.config the name of data logger like this :
and i add at host file ( c:windowsystem32driveretchost)
10.10.10.1 dss.datalogger (for example)
its done well...and i said this is server process ..:-)
The problem is when the data need to send with different ip address...and i want to change from server process to client process which mean the client can choose what ip that client want to send the data logger..
I'm needing to send around 500-2500 emails out at a time to internal email accounts. I'm wondering which was would be faster both for the mail server and for my client app. Should I send multiple emails with just different TO addresses, or just one with multiple BCC addresses? I tried testing this by sending a bunch to my own email and the multiple emails method work, but with the BCC and a single message I only get that single message in my inbox. Shouldn't I be getting as many copies as the number of times I put my address in the BCC line?
i have a problem that is, I am calling data form database in agrid view and taht gridview contain both bounded and unbouded field now i wat to send this grid view data back to a datatable is it possible if yes then how?
in my gridview 1st column is checkbox control in template fileds and iam using paging also. when user clicks the button ,all selected no of check boxes data has to be send in mail
I've been working on this function, basically it's an order page. When the user presses the "Order" button, I would like the data to write to a SQL DB. This is what I have:
Protected Sub btnOrder_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnOrder.Click For Each row As GridViewRow In GridView1.Rows Dim Owner As String = DirectCast(row.FindControl("lblOwner"), Label).Text Dim Item_Num As String = DirectCast(row.FindControl("lblItem_Num"), Label).Text Dim Lot_Num As String = DirectCast(row.FindControl("lblLot_Num"), Label).Text
[Code]....
I can't get these "Dim Owner As String = DirectCast(row.FindControl("lblOwner"), Label).Text" to compile. I think because this is looking for template fields and my gridview is filled in on the fly so they are bound fields. Does anyone know how to get the text out of a bound field?
 Name   Email                 Message  Ram    ram57@gmail.com       Tomorrow meeting at office 10 AM  Arun   arun86@gmail.com      Tomorrow work to be finished at right time Vijay    vijay76@gmailcom       Client meeting at 11 AM
i have one button called Sendmail,when i click that sendmail Button i want to send the mail.
On my matrimony test web site I want to send the matched profiles into members email. Basically, when user searches anything it displays in ListView with photo, Name, Age etc. In the same format I want to send it....how to do this...
I am trying to send some data to my fax server. I got a sample of console program from the server documentation, which works fine, but when i am trying to implement in my web app, its giving the error:
The RemoteServer returned an error:(400) Bad Request..
when i send data for show a list of the project to view i got this error
The model item passed into the dictionary is of type 'BentaAccounting.Models.Project', but this dictionary requires a model item of type 'System.Collections.Generic.IEnumerable`1[BentaAccounting.Models.Project]'.
I've been trying this for 2 days. In ASP.NET and VB.NET I've page1.aspx and page2.aspx I would like when I press button1 in page1.aspx to trigger button1.click event and open a page2.aspx in a new window and send to it data. All this can easly be done if no new window, by Server.Transfer or Response.Redirect. But unfortunatly they don't have an option to open a new window.
-- Updae --
I've used this solution but can't send the parameters and it opens me page 0 !!
i have an ASP.NET 4.0 HTTP handler that should receive and send data in json format. I'm using jquery to send json objects serialized in a string to the handler. It correctly sends the request but i don't know how i could retrieve the data from the httpcontext passed to the handler and how i could deserialize it..