Web Forms :: Exclude The Pdf.aspx Webform From The FormsAuthentication?
Mar 30, 2010
In PDF.aspx, I create a pdf of a webpage. Because a new browser window opens here, the user is lost and the application will return to the login screen --> result: a pdf is created of the login screen.
My question: how can I know exclude the pdf.aspx webform from the FormsAuthentication and still remains safe
View 6 Replies
Similar Messages:
Mar 23, 2010
I have an ASPX web site and I have code in there to redirect from the login page with the call to
"FormsAuthentication.RedirectFromLoginPage(username, false);" This sends the user from the root website folder to 'website/Admin/'. I have a 'default.aspx' page in 'website/Admin/' and the call to redirect works on a previous version of the website we have running currently, but the one that I am updating on a separate test server is not working. It gives me the error "Directory Listing Denied. This Virtual Directory does not allow contents to be listed." I have this in the config file:
<authorization>
<allow users="*" />
</authorization>
under the "authentication" option and...
<location path="Admin">
<system.web>
<authorization>[code]....
for the location of Admin.Also, there is no difference in the code between the web.config, Login.aspx, or the default.aspx files on the current server and the one on the test server, so I am confused as to why the redirect will not work on both. It even works in the Visual Studio server environment, for which the code is also identical.
View 1 Replies
Oct 14, 2010
I know this post is the same than other around but I can't get it to work the way I want, the thing is that the Login.aspx page have it in a folder not in the root of the directory, also the page that I want to redirect the user to is in the same folder, so far I got this in my web.config file
[Code]....
All pages contained in the Admin folder want it to be protected, the administrator needs to authenticate first, so my question is what I am doing wrong? need to take the Login.aspx and the admin.aspx out of the admin folder?
View 5 Replies
Oct 18, 2010
I have Webform.aspx and Webform2.aspx
How in Webform2.aspx to included Webform.aspx?
View 4 Replies
Mar 16, 2010
What is the difference between:
FormsAuthentication.RedirectFromLoginPage
AND
FormsAuthentication.SetAuthCookie(Text_txtUserName.Text, true);
HttpContext.Current.Response.Redirect(RedirectFromLoginAddress);
View 3 Replies
Sep 22, 2010
<add name="ApplicationServices" connectionString="data source=.SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true"
How to call in WebForm.aspx:ataContext ctx = new DataContext ... how to call from web.config ?Now I have: DataContext ctx = new DataContext("data source=.\SQLEXPRESS;Integrated Security=SSPI;" + AttachDBFilename=|DataDirectory|\Database.mdf;User Instance=true");
View 7 Replies
Jun 10, 2010
Using two ScriptManagers(ASP.Net and Telerik) will effect the page performance ?I have both ASP.Net and Telerik Controls on the same page and I'm using both ASP.Net and Telerik Script managers. Can I avoid using one script manager ? How will the page performance is varried if I use two script managers ?andRefering Source/SCript files in one Script manager can be used accross the other controls ?
View 1 Replies
Dec 11, 2010
I have seen an existing post which explains how you can restrict access to an ASPX page using:
[Code]....
This works as in it keeps those who are not a member of Administrators AD Group from being able to view the webform but for some reason when I implement the above it locks even the Administrator user out which is not what I wanted at all.My web.config is as:
[Code]....
As you can see I have tried to restict it also through the web.config file but neither approach has worked.
View 3 Replies
Mar 3, 2010
I'm new here and i'm new to ASPX. I read some articles, i have search the web for my problem, but i can't find my answer
View 10 Replies
Feb 26, 2010
I am using a server control on a single web.forms page. I have to use this control on a web.forms page since its a server control, although this is actually a MVC project. So I created a web.forms folder and put my new page in it. I then copy the example code from the signature control. I get the following error:
The base class includes the field 'ctrlSign', but its type (WebSignatureCapture.SignatureControl) is not compatible with the type of control (ASP.signaturecapture_signaturecontrol_ctlsignature_ascx).
I know the code works because if I removed the ID attribute from the server control, it no longer gives me this error and my control renders. But I need the attribute for the ID so I can perform is post event
I am using this signature control. Here's the web.forms code...
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Index.aspx.cs" Inherits="KahunaCentralTIDRevamp.SignatureCapture.Index" %> [code]....
View 2 Replies
Aug 16, 2010
How do I stop a TEXTBOX from rending on user click?
I have a gridview, a button, a textbox (for searching string) on my web page. When the button is clicked the data is exported from the gridview to MS EXCEL. I am having issues with the following code. It execute the export to MS Excel when the user click the enter key.
NOTE: My application works fine except for when the user clicks the enter key on the keyboard the export seems to be triggered. I do not want that to happen on enter.
CODE:
Public Overloads Overrides Sub VerifyRenderingInServerForm(ByVal control As Control)
'Confirms that an HtmlForm control is rendered for the specified ASP.NET server control at run time.
End Sub
GOAL: How do I specify only the Gridview control to be rendered, when the above function is called.
Only gridview control when the button is click. No other user activity should execute the the MS Excel export. I would like to exclude textbox control from VerifyRenderingInServerForm?
View 1 Replies
Oct 19, 2010
in webform 1, i have search button when i click its open webform2 and there the gridview.
I want when i click the link in gridview in webform 2 then it close webform 2 and change the datasource parameter in webform 1 without open the new window (still same window)
View 2 Replies
Mar 21, 2011
What is right way to send visitors from one webform to other. What are their limitations and their plus points.
View 2 Replies
Sep 23, 2010
We have a weird issue found during setting up a new Windows 2003 Server with IIS6.0 & ASP.NET 2.0, our site is built using ASP.NET forms authentication with general authorization to deny access to all users & allow explicitly to static, home pages etc, -- web.config setting for forms auth looking as below:
<authentication mode="Forms">
<forms name="appNameAuth" path="/" loginUrl="~/Pages/Users/Login.aspx" protection="All" timeout="60" defaultUrl="~/Pages/Inner.aspx">
</fo </authentication
View 1 Replies
Mar 5, 2010
I have a datatable which contains the summery row as well. I just assign the datasource property of a gridview and call databind method to fill and display the records.
Now, when I applied sorting through dataview to the gridview, the sorting happens along with the summery row, which is a normal behavior. As a result the "Total" - column took place inside the data some times. I want to prevent this.
The best way out for that can be done by creating the summery row at grid view row databound. But unfortunately I could not change the datatable as per this requirement.
Can the dataview sorting exclude the last row of the datatable through any process?..
View 3 Replies
Mar 12, 2010
I have a drop down that lists all our 40+ locations.. I then have a list box with all our locations as well. The client is presented with the question which locations have you worked at before. If they pick say 3 locations, i need to remove or disable those 3 from the drop down. I have other code for creating a drop down, but not sure where to go with this.
Here is my code for the controls and code behind:
[Code]....
View 17 Replies
May 21, 2010
What is the content of ASP.NET FormsAuthentication cookie value? How can I see the real value of the hashed string (in case that I have the decrypted key)?
View 1 Replies
Jun 4, 2010
I have data annotation validators:
[Code]....
On EDITION form I have only fields: 'title' and 'message' (without field 'link'), but for 'link' is still triggered validation. How can I exclude 'link' from validation in action. I have tried:
[Code]....
But this doesn't work. I still see: "The link field is required.". What is the solution ?
View 8 Replies
Jan 26, 2011
I have code like this
string pattern = "<(.|
)+?>";
System.Text.RegularExpressions.Regex regEx = new System.Text.RegularExpressions.Reg(pattern);
string result = "";
result = regEx.Replace(htmlText, "");
In this "htmlText" will have some html code which also contains break tags. Right now its replacing all the html tags, but I want to leave break tag and replace the rest.
View 2 Replies
Oct 21, 2010
I have this url working in my code:
[Code]....
I want to change my url to NOT to include the home/index [Code]....
ie, it should work like
[Code]....
My current Global.asax entry is like:
[Code]....
[Code]....
[Code]....
[Code]....
View 1 Replies
Mar 14, 2010
Isn't the Bind attribute, preferable the Exclude parameter, define any properties that will be excluded from any form update? If so, why does the ModelState is not valid when I do this?
[code]...
View 1 Replies
Mar 7, 2011
I'm attempting to serialize an object but I would like to exclude one of the objects inside it. I've tried [NonSerialized] and it is still attempting to serialize it when I call XmlSerialize on a Cart object.
[Serializable]
[XmlRoot("Cart")]
public class Cart : ICart
{
// Public Properties
[DefaultValue("")]
public string ID { set; get; }
[XmlIgnore()]
[NonSerialized]
public CartSerializer Serializer = new CartSerializer(this);
}
View 1 Replies
Sep 13, 2010
I have the following regular expression replacement:
[Code]....
how to exclude certain string
View 4 Replies
Mar 5, 2011
On my MasterPage I use UpdatePanel to update whole ContentPlaceHolder. Example of code you can find below. All content pages work fine with this MasterPage except one. This page is very complex. I noticed that when I disable UpdatePanel in my MasterPage this problematic page works fine. Question: is it possible to exclude something from UpdatePanel - in my example whole page but only this one?
<asp:UpdatePanel
ID="UpdatePanel2"
runat="server">
<ContentTemplate>
<asp:ContentPlaceHolder
id="MainContent"
runat="server">
</asp:ContentPlaceHolder>
</ContentTemplate>
</asp:UpdatePanel>
View 14 Replies
Apr 19, 2010
I am looking for a regular expression for c# asp.net 3.5 that will fail if there are ever any double spaces in a sentence or group of words.
the cat chased the dog = true the cat chased the dog = false (doubles spaces occur at random intervals)
View 4 Replies