Web Forms :: Invisible Menuitem From Anonymous User?
May 22, 2010
my web.sitemap file is given below,
<?xml version="1.0" encoding="utf-8" ?>
<siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" >
<siteMapNode url="Home.aspx" title="Home" description="Home">
<siteMapNode title ="User" description ="Edit Personal Information" roles ="*" >
<siteMapNode url ="~/User/ChangePassword.aspx" title ="Change Password" description ="Change Password" roles ="*" />....
but its visible always.only authenticated user only see this.what can i do .
View 5 Replies
Similar Messages:
Mar 21, 2011
the Web Part for anonymous user and authenticated user is displayed differently. I faced this problem twise. First time when used Silverlight control in the Web Part and second time when used devexpress control in the Web Part. In both cases problem was with displaying for anonymous user. Silverlight control didn't display. Devexpress control lost it's styles. Both controls had properties that pointed to files. Silverlight control property pointed to the XAP file, and Devexpress control property pointed to the CSS file. It seems to me, that for anonymous user the Web Part cannot find this path or doesn't allow to link to other files.
View 1 Replies
Jan 7, 2011
I deployed a website where a logged user or an anonymous user can select data and download a XML file. The website generate the XML file in the server and then deliver it.
It works fine in my development environment, but after deployment, the anonymous user can download the file, but the logged user receive this error:
System.UnauthorizedAccessException: Access to the path 'd:HostsLocalUserheringerwebsiteUpload20110107094051.xml' is denied.
It is weird that as anonymous i can do it.
The website server help states this:
"Grant write, modify, delete access rights on website's folder
Your website executes under unique user account that by default has full control over the website's folder.
So your application can create, open, read, write and delete files and folders inside of your root folder.
There is no need and no way to change this permissions.
If, when running ASP.Net application, you still unable to create file or update it, you have to check your Web.Config file for "<Identity impersonate..." tag and remove it.
The only exception is when the application tries to modify a file or folder in "Application_Start" event of Global.asax file. This is by design that user authenticated only after the Application_Start even. Before the user is authenticated your website runs under an identity of Application Pool which is "Network services". That account doesn't have access to the folder of your website.
To make it work you eather have to move the code that tries to modify files or folders out of the "Application_Start" event of the Global.asax file or inside the event you'll need to impersonate your user by code."
But i am not using impersonate and the tag is not in my web.config.
View 2 Replies
Dec 15, 2010
I have a problem with using login controls form authentication ! as my website serves some pages for guest users(Anonymous user) and some pages are for only secure user(they must have to login for those requested pages)...... my problem is this that when i apply form authentication in web.config file to login control then visual studio directly shows only login page where i want that in general case only : guest user pages must be shown and if user clicks on login then after login the requested page he may open !
View 2 Replies
May 10, 2010
regarding gridview Template column.in my template column i have a textbox and i need to invisible to user. but when i set visible property "false" then textbox value is not render.
[Code]....
View 6 Replies
Jan 28, 2011
i have just started making an asp document using c# codes
[Code]....
right now i have a droplistbox in my design.. when i select others, a text box will appear and allow user to enter the new email address. however, i would like the text box to appear invisible to the user when he enters this asp page initially. how do i go about doing it?
just another question.. Supposed that if the user chooses "Others" and entered a new email address in the textbox and i want him to be able to see this new email address as an option in the future when he runs this asp file again. is it possible not to set up a SQL server for my application? or can i just use some variables to set as that?
View 6 Replies
Jan 18, 2010
I am currently implementing a client-side paging solution using ASP.NET, jQuery and JSON.
I have been following the excellent article from encosia: http://encosia.com/2008/08/20/easily-build-powerful-client-side-ajax-paging-using-jquery/
In my Web Method I retrieve my data from the database as a DataTable:
DataTable categoryProducts = ProductViewerAccess.GetCategoryProducts
("AA", 4, 0, Page.ToString(), out howManyPages, "FALSE", 0, "CostPrice", "asc", destinationList);
I then retrieve the data from the DataTable into an anonymous type:
var feeds =
from feed in categoryProducts.AsEnumerable()[code]....
This all works great.
However, I would like to extend the code to perform some evaluation checks (e.g., check that various columns in the DataTable are not NULL) and other pre-processing (e.g., call various functions to build the image URL based on the image ID - which is another column in the DataTable not shown in the code fragment) before I return the resulting rows of the DataTable as an anonymous type to the client-side.Basically, I want to iterate through the DataTable, perform the evaluation checks and pre-processing, while building my anonymous type manually as I go. Or maybe there is a better way to achieve this?
View 2 Replies
Dec 4, 2010
is there any method in .net framework to create a anonymouse user programaticly or i have to write a method?
View 6 Replies
Sep 11, 2010
I have some tables in my asp.net mvc application for layout purposes. Even though I usually use divs for most things, in some cases tables make most sense because they already have exactly the layout I'm after in these cases.
The only problem is, as far as I know the borders are supposed to be invisible unless you specify a width and style for the borders. But they aren't... They are rather vague, yes, but there are still light blue borders around each cell. What is that and how do I get rid of them? (Funny thing is I don't remember having seen this before when I used tables, which was a while ago).
I also tried specifically setting the border to 0px on both table and td, but that didn't work either...
View 4 Replies
Mar 2, 2011
In my web application I want the anonymous user to browse only the login page, and It's OK now but it appears without style!
<authorization>
<deny users="?"/>
<allow users="*"/>
</authorization>
</system.web>
<location path="Style">
<system.web>
<authorization>
<allow users="?" />
</authorization>
</system.web>
</location>
View 2 Replies
May 17, 2010
I have an ASP.NET application where user is Anonymous when he connects to website. Also I have a printing server inside network. I want to let this user to print to the network printer.
In order to print I have to use File.Copy command. When I do this I get "Access denied". So I tried to impersonate the user with credentials of user that is inside domain and has the rights to print to that specific printer.
The problem is this user has to be Administrator, and I cannot let him be the Administrator. When this user is not Administrator then the printing is not working ("Access denied").
I tried to use Network Credentials but I don't know how to set credentials to command File.Copy. This command doesn't have any extensions or overloading for credentials.
View 2 Replies
Jun 21, 2010
I have a usercontrol which has a combobox inside it.
This UserControl is the inside an asp panel - and when the panel is visible, the dropdownlist within the control binds to its datasource and behaves itself.
When the panel visibility is set to false, the dropdownlist within the usercontrol is empty.
View 1 Replies
May 24, 2010
this is my url http://localhost:4985/mail_tracking/main.aspx?user=12345
how to get the user=12345 and put in...
<asp:MenuItem Text="ADD MAIL" Value="New Item" navigateurl="addmail.aspx?user=??????????" separatorimageurl="images uldokmenu.gif"></asp:MenuItem>
View 2 Replies
Dec 22, 2010
i am "attempting" to use the Menu control to dispaly a static site map. To do this i simply set my StaticDisplayLevels to 10 to ensure the 4 levels of navigation i have all show up. this works fine but we require styling the upper level items differently from the lower items. Since i am not using Dynamic items i can't set DynamicItemStyles separate from StaticItemStyles (if anyone knows how to keep other levels dynamic but force them to stay expanded im all ears!)
Anyways i set an even on the MenuItemDataBound that gets rid of hidden elements and i wanted to use this similarly to a repeater control to hook into the hyperlink i have in the StaticItemTemplate and set a class. Only problem is using e.Item does not allow for a "FindControl" method. Is there any way to cast a menu item as a ListItem or somethign where i can actually try to find the control within it?
Or any other alternatives on styling levels differently. I noted that the e.Item has a propert of Depth which i can use to determine how to style it. just can't seem to get into the item to find any controls.
View 1 Replies
May 19, 2010
With Menuitem in horozontal display mode, i want it to be displayed accross the top of the screen, filling the whole width - any idea how you specify this? I see there is a width parameter, but what value to use? Additionally, if say it contained 4 items say and I wanted to display the 4 items justified in the centre only of the screen - how would I do this?
View 1 Replies
Jan 29, 2011
im developing my first website in asp.net 3.5 using images or icons as menuitems.
What i want to know is how to use different images (I created images in fireworks JPG) for each menu items.
i have images for about,home,help,contact us,.How can i place it through CSS in each menuitem horizantel
i have images for hover n selected to...but placement is problem through CSS .
my CSS:
div.Menu123
{
margin: 0px;
height: 85px;
width: 500px;
position: relative;
z-index: 2;
top: 0px;
left: 400px;
right: auto;
}
.MyMenu a
{
background-image: url('../Images/Styles&Buttons/About.jpg');
background-repeat: no-repeat;
}
.MyMenuhover a
{
background-image: url('../Images/Styles&Buttons/AboutHover.jpg');
background-repeat: no-repeat;
}
View 1 Replies
Dec 14, 2010
I'm using VS2010, where the automatically renders the menu items on an ASP.NET menu control in <ul> and and <li> tags with anchor and image tags--the image tags for the ImageURL reference that I specify for each MenuItem, which is great...
trying to get an id property into the img tag rendered for each menu item. Is there anyway to do this, so that I can use Jquery easily to access each of the items? The closest I can come to a unique identifier on each rendered img tag is the title property--which translates into the tooltip property on the control.
View 1 Replies
May 17, 2010
their is an easy way to supply data to a menuitem from a sqldatasource?
View 6 Replies
Feb 16, 2010
I have one menu control, when the mouse hover on it sub menu items text does not appear.
View 3 Replies
Jan 11, 2010
<asp:MenuItem
Text="Airport Authorities"
Value="New Item"
NavigateUrl="sub_cat_list.aspx?cat_id=<%=Encryption("1")%>"
separatorImageUrl="border.gif"
>
Literal content ('<asp:MenuItem Text="Airport Authorities" Value="New Item" NavigateUrl="sub_cat_list.aspx?cat_id=') is not allowed within a 'System.Web.UI.WebControls.MenuItemCollection'.
how to pass querystring in menuitem contorl?
View 18 Replies
May 26, 2010
How can I databind a MenuItem to a SQLTable entry?
View 5 Replies
Jun 3, 2010
In my website I use a <asp:menu> control in the master page. And I use Web.sitemap file to define the menu items. And everything works fine.But every few days when I click on the menu item tabs to change to another page, strange characters are embedded in the URL like this:
- http://www.mydomain.com/(A(5wNJHLUjywEkAAAAZDhkNW....))/nextPage.aspx
(supposed to be just http://www.mydomain.com/nextPage.aspx)
By checking the following MSDN link I realize that these strange characters stands for anonymous user:
http://msdn.microsoft.com/en-us/library/aa479315.aspx
However, I already set the following in web.config:
- <forms cookieless="UseCookies" .... />
- <anonymousIdentification cookieless="UseCookies" enabled="false" />
- <sessionState cookieless="UseCookies"/>
but these strange characters are still inserted into the URL every few days.Once it happens, I need to restart the website, or restart or recycle the Application Pools in IIS, then it will become normal again.
View 6 Replies
Jan 5, 2011
im just getting started with asp.net and so far im enjoying it! However at the moment im struggling to work out what is possible and what isnt. What i need is a menu control, where one of the submenu items drtops down to show the calender control... With any luck i can expand this so other controls are Drop Down menus, and text boxes etc.
<asp:Menu
ID="mainMenu"
runat="server"
[code]...
View 3 Replies
Jan 24, 2010
I have a menu control on a master page with mouse hovering effects that is populated dynamically. Now i am playing .flv video on the content page. Everything works fine, but when a mouse is hovered on a menuItem, .flv video is hanging. Is it because of javascript execution when the mouse is hover on a menuItem?
View 1 Replies
Aug 2, 2010
I have a search page, detailspage with formview and formview has multiple templates (item, edit, insert).
At the master page (I use vb as code), I have a menu with menuitems (for example "New Contact"), what I want is when I click on the New Contact menu item, I get redirected to the page with the formview on it and the mode of the formview is set to insert.
How can I do this?
My menu is as followed:
<asp:Menu ID="NavigationMenu" runat="server" CssClass="menu" EnableViewState="false" IncludeStyleBlock="false" Orientation="Horizontal">
View 4 Replies