It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
How can I get the email address of the user who visited my site in google analytics? My web site is in asp.net
Your best bet is to ask the customer for their email address as part of something on your site, then record the IP address along with it. Then you can tie that IP to the analytics.
There's certainly no way to pull it from the analytics themselves.
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I'm developing a web page (asp.net, C#), where the users enter some data every month and save it. I use oracle database.
If the data is not entered for a month, I want a mail to be sent to some email ID, ie. myid#abc.com.
Can anyone help me doing this?
Given how vague your question is, here is an answer to match - use Oracle Alerts.
This blog article should put you in the right direction.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to log in to an ftp account and display the files or directories in fileview control.
What is the best approach to do it?
I am able to do it but some security issues are arises like if you are using your username and password in the URL, the location of the file also displays your credentials you've provided..
I want to connect the fileview without loging in in the log in dialog that appears.
You could take a look at this FTP client + control:
http://www.blackbeltcoder.com/Articles/client/an-ftpclient-class-and-winform-control
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to open my gmail inbox in C# code.I will give my gmail username and password. It should open my inbox automatically.
How can I do this?
As many of the comments above have said, Gmail has many existing APIs for accessing it https://developers.google.com/google-apps/gmail/. There are many libraries available for accessing these APIs, including previous questions on stackoverflow like https://stackoverflow.com/questions/1544895/imap-library-for-net and How to send mails through smtp in c#.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I have created a dynamic data website in visual studio 2010 using C# and ASP.NET
When a user creates a request (for example a request for software installation), i would like that request to go into some kind of queue. So that i can check the users request and either allow or deny it.
Can someone help me with this ?
Store all request in a database, and add a flag that it has not been processed
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I've made games with c# but have never done anything with networking or accessing a website via c#, so I was wondering how I would be able to search twitter post for certain keywords, counting how many come up but are recent post. Thank you very much.
I suggest that you'll check Linq to Twitter:
http://linqtotwitter.codeplex.com/
This website should get you on the right track with searching inside a post with Linq To Twitter:
http://geekswithblogs.net/WinAZ/archive/2011/04/28/displaying-search-results-with-linq-to-twitter-and-asp.net-mvc.aspx