Global Way To Send User To An Error Page?
Jul 8, 2010I do my best to catch all the exceptions but I would like to send users to a standard error page if an exception that I couldn't catch occurs. Is there a way to set this globally?
View 5 RepliesI do my best to catch all the exceptions but I would like to send users to a standard error page if an exception that I couldn't catch occurs. Is there a way to set this globally?
View 5 RepliesI have an ASP.NET application where i am tracking my applicaion level erros using golabl.asax On_Error method.I will send an email to my id when there is some error happened in the site(ie :" when the application _error being invoked) Now From my global.asax's Application_OnError event, how can i get the URL of the page where this error was raised ?
View 3 RepliesI have set up custom error on my server and i'm redirecting to a page as shown below
<customErrors mode="On">
<error statusCode="500" redirect="/servererror/default.aspx" />
</customErrors>
When it gets to the page servererror/default.aspx I need it to send an e-mail to me with the exception.message
Here's what i'm trying but it won't work
Sub Page_load(ByVal sender As Object, ByVal e As EventArgs)
Dim LastError As Exception
Dim ErrMessage As String
LastError = Server.GetLastError()
ErrMessage = LastError.Message
[Code]....
I have create user wizard control on my page as below with mail definition setup to send a welcome email to new registerd user.
<asp:CreateUserWizard ID="CreateUserWizard1" runat="server"
requiresQuestionAndAnswer= "false"
oncreateduser="CreateUserWizard1_CreatedUser" LoginCreatedUser="False">
<MailDefinition BodyFileName="~/EmailTemplates/CreateUserWizard.txt"
From="myemailaddress" Subject="New User">
</MailDefinition>
<WizardSteps>
<asp:CreateUserWizardStep ID="CreateUserWizardStep1" runat="server" >
<ContentTemplate>
layout content here
</
ContentTemplate>
</WizardSteps
>
</asp:CreateUserWizard
>
Problem is I am not receiving the welcome email.
To test it, I placed another create user wizard on another page in its default form
as below
<asp:CreateUserWizard ID="CreateUserWizard1" runat="server">
<MailDefinition BodyFileName="~/EmailTemplates/CreateUserWizard.txt"
From="myemailaddress" Subject="New User">
</MailDefinition>
<WizardSteps>
<asp:CreateUserWizardStep runat="server" />
<asp:CompleteWizardStep runat="server" />
</WizardSteps>
</asp:CreateUserWizard>
This one worked and I got welcome email. The setup in Web Config is correct. Is it because I have the oncreateduser="CreateUserWizard1_CreatedUser" or some other conflict issue.
i can know in Global.asax which control do the current postback?
View 1 RepliesI have a view where I want to perform different actions on the items in each row in a table, similar to this (in, say, ~/Views/Thing/Manage.aspx):
[code]....
In the most part, this is working fine. The problem is that if ThingService.SetEnabled throws an error, I want to be able to display the error at the top of the table. I've tried a few things with Html.ValidationSummary() in the page but I can't get it to work.
Note that I don't want to send the user to a separate page to do this, and I'm trying to do it without using any javascript.
[code]....
How can I send a user to a login page for login where you don't have control(like windowslive) and then after authentication return to the original page?
View 5 RepliesSome actions such as posting a comment require login. It may timeout and the user may be redirected to a login page. With get data i can easily put the query in something like action=PrevPageUrlAndQuery. However with POST data i have to do something more complicated.
So is there a way i can make the page go backwards so all the user needs to do is click that post button again? Instead of displaying a page saying please hit back and resubmit your comment (more clicks + reading makes me slightly sad)
i tried creating a page and when i send it to the browser, i get this error message.
"http://localhost:53187/dogpound/Default.aspx
that can i do?
I'm using a ASP.NET Web Form to capture information from a user and then email the results to me. This is working well.
The problem is, that the SMTP Relay Server I am using from my ISP seems to be a bit slow so once I hit SEND on the form, it seems to take a little longer than average before sending the user through to the "Thank-You" page.
To counter-act the long wait time, I would like to add a little bit of code that will display on the Web Form once the user clicks the send button, but before the data is actually sent or they are forwarded on to the thank-you page.
Right now in my file.aspx.vb I have:
Try
smtpClient.Send(mailMessage)
Response.Redirect("thankyou.aspx")
Catch smtpExc As System.Net.Mail.SmtpException
'Log error information on which email failed.
Catch ex As Exception
'Log general errors
End Try
What I'm wondering is if it is possible to have a HIDDEN control of some type on the form and then change Visible=False to Visible=True to have the text display once the user clicks the Send button? Or should this be done another way?
I'm using Forms authentication in my application but I'm not using the Membership that's built into .NET.
How do I automatically send user to login page when his/her FormsAuthenticationTicket expires? I just don't want a user log in and leave a page on their computer screen long after their session has expired. I'd like to make sure that as soon as the user's
FormsAuthenticationTicket has expired, I send them to login page.
How you can send values from master page to user control in code behind (not through URL)?
View 3 RepliesI am using form authentication in my website. I have a scenario wherein the user is authenticated but the session has timed out. So, i would like to initialize some session variables in Session_Start of Global.asax (First i check if Request.IsAuthenticated=True). For that i required the name of the user who authenticated. On .aspx pages we can get it using Page.User.Identity.Name but how to get it in global.asax page.
View 1 RepliesI would like to hook up custom error page to my ASP.NET web site.What I would like to do is that. When any error occured transfer the visitor to a custom error page informing about the error,
and at the same time log into a file or send an e-mail to my email account reporting the error.Then an other thing how can I generate error for testing the my Eventhandler method?
I am using a generic error page using ASP.NET's <customErrors> directive.
<customErrors mode="On" defaultRedirect="500.html" redirectMode="ResponseRewrite">
</customErrors>
Problem - when an error occurs, this page does not return HTTP status "500". It comes as 200. So link checkers and spiders do not see that there is any problem.
How can I send the 500 HTTP status along with the static 500.html page?
Requirements:
I must use redirectMode="ResponseRewrite" I can't use a dynamic page, only static .html.
when user click forgot password it asked user name and email and send his password on his email.
How implement this task in asp.net. with datbase sql server.
When a server error occurs for whatever reasons (YSOD), the server will send a message via SMTP class. In my case, my company employs microsoft exchange and uses NTLM authentication for all domain users. I am authenticating users via NTLA windows integrated authentication. My question is, is it possible to utilize this authentication data, and pass it to the system.web SMTP username/password authentication scheme to send an email to me (the web developer) when the error occurs? I am pretty sure my company requires a username/pwd to send emails via SMPT on the ms exchange server.
View 1 RepliesI am consuming a third party web service wsdl using my .net aps.net page. And I am getting following error message. Cannt get to resolve it. Its working on my machine but not in my development machine. I have installed the certificate also in certificates on that machine.
Error --> The underlying connection was closed: An unexpected error occurred on a send.
I would like know how to declare a global variable that can be used within a user after the user login and before the user logout across all the possible pages.
I need to develop a web application that will connect to 5 different servers depends on the selection of user on what server they wish to connect and after they select a server and login...I will need to keep track the server name in a variable last until the user logout (user may visit various pages but the server name MUST NOT be changed due to other user login into different server). So how can I do it so that other users may select different servers and will keep the server name for each different users.
Let says:-
User A selects Server A and login and User B selects Server B and login at the same time, so how the global variable can handle the needs for each user (User A & B) with different server select?
Is "Session" the only way to fulfill the above? I think of using Application State but it seems that the value stored will be shared by all users and not for a particular user.
I have an application which works as follows:
Users will purchase Items and as soon as it reaches the products min value it will mail and process to all people who purchased in past but not processed as the min value not reached.
Let's suppose there is products called PRD01 which has min value of 10. A person (Per1) purchased 3 qty but it will not processed immediately as the min value not reached. Now another person (Per2) purchased 7 qty since it has reached the min value it should mail the Per1, Per2 confirming their order.
I have created a function which whill check if the MinValue reached Once the person does checkout. User Order should be processed imediately and if the Min value reached he should be mailed even he has closed the browser.
I have a .NET 3.5, C#, Silverlight 3, and LINQ Solution. My issue is this:
When a User goes to login I want to set a global class User; it has the properties of UserName and SecurityLevelId.
Then allow them access rights depending on SecurityLevelId. The real problem occurs because this project loads App page which calls the Shell page which calls the Navigation class. On Navigation instantiation it actually instantiates 6 other pages BEFORE you even get to the Login page.
So how in the World am I supposed to set and check all this if the page is loaded before I even go to it?
I have a custom provider for authenticaiton that is HTTP Module-based. IIS authentication and web.config authentication is configure to 'None' and allow anonymous. When I probe for User.Identity.Name in Session_Start, it is empty. However User.Identity.Name works elswhere in the application as expected (returns the current user id). Is it possibly during Session_Start no authentication request has been issued, therefore there is no principal at this moment?
View 1 RepliesIn the website we have several folders, some folders are accessible by anonymous users, others are accessible by members only, some by administrators or a both administrators and members can view this folder. Each folder contains some forms; these forms are based on the role as well. We'd like to add "user.identity" as to authenticate the user based on the user_id from table websit_ users.
However we are not sure , wither we need to specify each and every form, folder or this will be done automatically once authentication is applied. And where do we put the user.identity and what is the exact format of it. Do we include it in our Global.asax after the authentication part?! This is the code in global.asax:
[Code]....
What should be done if I want to redirect a user based on their ISO Codes?
And how should I detect a website user's IS Code in the first place? Like I know there are these server variables that we use to detect Client IP and all (HTTP_FORWARDED_FOR, REMOTE_ADDRESS, etc) but information about them on the many sites that I have read has got me confused about what to use. Like some say there can be comma separated IPs returned by HTTP_FORWARDED_X and out of those IPs , one is not sure which is the real IP and which are the proxy addresses. Also, that all the IP addresses in returned can be fake.
How to I fetch the REAL IP Address of a person? Like I only want to know what country a particular person is sitting so I can redirect the user accordingly. Secondly lets say a person is sitting in US then I want the user to be redirected to [URL] If a person is visiting my site from Germany, [URL] is the address that I want the person to be redirected to.Also if DE is the ISO Code then I want my GermanMaster.master page to load and if its US then I want that the USMaster.master should load.
So how do I fetch a user's not fake IP address, redirect a user based on that ISO code and then load a master page according to the ISO Code.
How do I go about it? I haven't ever worked with Global.asax before so clueless how to go about it all.
The user are from around the world.
So, whenever any user write new post / reply a post a post i need to get their date and time.
How this forum manage our date and time like GMT+5.30 for India? Like this i need to manage.