Access A Link In The Admin Area From An Email?
Feb 16, 2011
I have a product´s page that when the user click on a "BUY" button , it sends an email to me with the produtct´s details and a link to the supplier´s detail. The problem is that, the page is on the "ADMIN" page, and when i click on the link, it shows and IIS 7 error.
View 4 Replies
Similar Messages:
Dec 3, 2010
I have a simple online store where there are products that can be put into a cart and purchased. There is a admin page that can be logged into so that new products can be added or existing products can be removed or edited. To get to the admin area I need to put a /admin/index after the main page loads up. If I want to give my friends (from any location) the ability to add new products should I create a link to the admin area on the main page (like at the bottom) of the main page or should I just tell them to type in /admin/index after they go to the webpage?
View 3 Replies
Feb 11, 2010
Following one of the other tutorials I have figured out how to manage users [URL] but it does not mention how to delete them from the GridView. I have attached my Page's code plus my VB script. I have added a delete link into the GridView for preparation but all I would like is the VB script so that when the user clicks delete it deletes the user from the GridView and Databse. I hope I have made every really simple, anyway here it is:
ManageUsers.aspx
[Code]....
View 2 Replies
Nov 23, 2010
I have a feedback form that should send an email to the site Admin. This is just on my laptop in development stage and not on a server, but I think it still should function with my personal email account settings, shouldn't it? Everything seems to work fine - there are no error messages. But no emails are received in my testing.
Code Behind:
[Code]....
Web Config:
[Code]....
View 13 Replies
Sep 3, 2010
i wanted to give an email option to the admin of a website where he can enter multiple email id's and a costamized text etc , and the sending message must be stored with the details of the timings and date and to whom in send.
View 4 Replies
Jan 28, 2011
how do I grab an email address from a web form and email to that email address with the link to a webform?
View 2 Replies
Mar 3, 2011
I want to do file attachment funtionality with an email page. Please guide me on one thing, does attached file is send to recipient email server or it stayed on sender's mail server and its link is send ? For email if I send email from my hotmail address to gmail address will attached file be physically copied to gmail mail server or just its link (on hotmail ) will be sent and file will remain on hotmail mail server ?
View 1 Replies
Mar 11, 2011
i have created 5 pages which are back-end and should be accessible only to sitre admin that is me. how do i do it?
View 3 Replies
Aug 25, 2010
How can i access data from text area as it is formatted.
View 2 Replies
Jan 27, 2011
We have created an ASP.NET ( 3.5) application is configured to use FORM authentication and thus it has such a following items in Web.Config :
<location path="~/Admin/Default.aspx">
<system.web>
<authorization>
<allow roles="Manager,Member" />
<deny users="*" />
</authorization>
</system.web>
</location>
<location path="~/Admin/MyAccount.aspx">
<system.web>
<authorization>
the application runs OK on local web server box. Our ASP.net application is able to access Admin folder in local IIS application folder and its subdirectory. However, once uploaded to remote web host , user can login but when user wants to use any pages in ~/Admin subfolder, we get an exception that essentially states that access to the sub-directory is denied.
View 3 Replies
Jan 28, 2011
I am trying to deny access to my 'Admin' folder via web.config. I looked at another answer to a similar question and they recommend using the <location> folder, however when I insert "Admin/" into the path I get the following error:
[Code]....
View 1 Replies
Feb 23, 2010
my projects image files hosts on a local server machine which name is A.
another server hosts my web projects on IIS which name is B.
I want to set my web projects's image file names like image1.ImageURL = "A\foldername\image.png";
but when the projects runs the image file url gets the image url adrress : [URl] I must access the image files which are another server machine on my local network area and I must get the ImageUrl properties from another server machine
View 2 Replies
Feb 23, 2010
I used ModalPopup Control on this link, [URL]How should I write the code that to close pop up by click the area outside the pop up panel?I use AjaxControlToolkit-Framework3.5SP1
View 7 Replies
Jan 11, 2010
ok i have my GUI installed on the server which has users as administrator as the role of an administrators and user1 which has the role of the guest...I have one project and there are different pages for administrators and guests... when the login screen comes up and the administrator logs in he should be redirected to the admin.aspx page and for user1 he should be redirected to the guest.aspx page.
Now the scenario is i have 10 users in a company and one administrator. This GUI is on the network server and these 10 users are able to access it as guests.
How do the guest user logs in and can access the SQl database in the read only mode but when the administrator user logs in he can access the database in the read and write mode.?? I dont know how to do this really... any suggestions
(by IIS server or webconfig or some setting in SQL server)
and the previous question is what to use (forms or windows authentication) where can i get information on how to set up this kind of authentication???? Is there the need to use impersonation also??
View 2 Replies
Jan 20, 2010
I am using the following in my webconfig, so that only admin an access the admin folder.
<location path="Admin" allowOverride="true">
<system.web>
<authorization>
<allow roles="Administrators" />
<deny users="*" />
</authorization>
</system.web>
Now when the guest user tries to access this he is redirected to the Login page. I want the user to either sho a popup that user cannot access it or just stay on the same page with some error message in a label on that page... Here is more code in webconfig
<authentication mode="Forms">
<forms loginUrl="Login.aspx" protection="All" name="Cookie" timeout="120" path="/" slidingExpiration="true"
defaultUrl="Default.aspx">
</forms>
View 3 Replies
May 16, 2010
I've been programming with VB for a little over 2 years, however have never had any formal education. So the extent of my education is as follows:
I want to know how to do a mouseover for an image on my webpage, I look online for someone who's done it in VB and I try and duplicate their code and then play with it until I get the results I want.
So as you can see there is a wealth of VB coding that simply escapes me because I just haven't desired to include it or needed to include different aspects of VB in my programs / web developments. What I want now is big enough that so far (one week of online searches) I've uncovered no site or forum that has given me a tutorial on how to go about implementing what I want into my Microsoft Web Development project. The old sources for information are only good for one or two aspects of a coding procedure, not an entire overhaul of my current .aspx files. Not to mention a bias towards hard coding in pure <html>, I get a lot of that when someone doesn't have the patients to address my question.
When I created my new project it automatically populated an Accounts folder with a Changepassword.aspx, Changepasswordsuccess.aspx, registration.aspx, and Login.aspx. I've successfully prevent the program from logging in the user after they register with a simple " ' " before an authentication line in the registration.vb code; however, the login.vb code and the login.design.vb code is simple beyond me, and I've yet to find a site that spells it out for me.
I've created an online test. However, the intent is to have the users only take the test once, thus after they register with their email address I want my site to send them an email with an account activation link. Once they click on this link by visiting their inbox they can then take the test.
View 10 Replies
Oct 12, 2010
I have built an intranet site where the user is automatically logged in through Windows Authentication and I am now building an admin panel/section. I was wondering if there is a way using the Active Directory memberOf attribute that people who are members of the group 'Domain Administrators' could automatically gain access to this section without needing to log in, but people who are not part of this group get redirected.
View 1 Replies
Jun 13, 2010
I have an Admin folder which contains 4-5 aspx pages. I want to that only user with role="admin" can view those files. What settings i need in web.config?
View 1 Replies
Jan 22, 2011
I can't get past the "Test" link on the "Provider" tab in my Web Site Admin Tool (WSAT).
I'm running SQL Express (10.0.2531.0) and have created my "ASPNETDB" database using the version of aspnet_regsql that came with .Net 2.0. (When that work, I re-ran the version that came with 4.0.)
I have the following in my web.config:
[Code]....
And this:
[Code]....
When I go into the WSAT, to the Provider tab, I select "AspNetSqlProvider" and click test.
The error message I get is this:
Could not establish a connection to the database.
If you have not yet created the SQL Server database, exit the Web Site Administration tool, use the aspnet_regsql command-line utility to create and configure the database, and then return to this tool to set the provider.
View 2 Replies
Dec 22, 2014
I am trying to test emails using the local PickupDirectory. The code seems to work only in that an email is send to the local directory, but it appears like this: [URL] ....
Where it says 'Please click....here..', the 'here' should be a link.
This is the code I have:
Code:
Protected Sub SendPost_Click(ByVal sender As Object, e As System.EventArgs) Handles SendPost.Click
Dim SMTPMail As New System.Net.Mail.MailMessage()
Dim sbody As New StringBuilder()
sbody.Append("Please click <a href='http://usingasp.net/reset_pwd.aspx'>here</a> to reset your password")
[Code] ....
How can I rectify that?
View 10 Replies
Jan 5, 2010
I am trying to send the meeting information via mail and in the mail content I would like to place a link to to the google map site, so that the meeting place could be seen on the map.
What would be the best way to construct the google map url string [URL] , for a particular address.
View 4 Replies
Feb 21, 2014
following is my function to send mail
Function send_mail(ByVal mail_id)
Try
Dim smtp_client = "smtp.net4india.com"
Dim password = "omport$10"
' Dim email_id = "mail@relishspices.com"
Dim email_id = "net@omport.com"
[Code] ....
I can send a simple text mail but i am unable to send link through email.whats wrong in the code?
View 1 Replies
Nov 18, 2010
I have created a simple mvc portable area project with a simple view displaying hello world.
In the portable areas project i added the view as embedded resource ,compiled to dll and added the reference
in the consuming web project.
How can i call the embedded portable area view from another web project
View 2 Replies
Jun 21, 2010
Really sorry because this is almost "send me the code" - although really it's "send me a link to another discussion"
I am setting up a .net membership system and need to validate users from the email address they provide via a "click here to validate your account" type link.
Just wondered if anyone knew of any good tutorials or posts out there about this? I have searched for about an hour and can't find anything - hence me asking the question.
View 2 Replies
Mar 20, 2011
I am developing a website where I need to send confirmation link to the user's e-mail account when he/she signs-up.
When user clicks this link then a field userEnable in database changes from "false" to "true".
How do I send a confirmation e-mail to a user when user clicks on the signup button.
When user clicks on this confirmation link then how would the field UserEnable change from "false" to "true"
I am using asp.net 4.0 with VB.NET as the language and SQL Server 2008 for my database.
View 3 Replies