C# - Using Admin Panel - How To Create A Aspx Page In Sitefinity
May 14, 2010
how we can create the dynamic page ex. help.aspx and write the code in sitefinity. Because i facing a problem I create a page but i unable to know in which directory the page is lived.
[URL]
View 1 Replies
Similar Messages:
Feb 21, 2011
i want to crease an admin panel. but i do not use asp.net default membership system.
i know actions enable access can be determine by [Authorize] attribute. but my admin has 10-20 controller and about 100 action.
i do not want to signature all of actions by [Authorize] attribute.
all controller must be required login if user did not login.
View 3 Replies
Mar 26, 2016
I have a project That Is Some Ebooks project..,I want to create a dash Board,If User Register then he Login To Dashboard and he will upload some books in his admin panel..,if new user register then how to create a other Dynamic Panel..Each Admin Panel for Each User..dynamic Panel..how to create it..?
View 1 Replies
Jul 3, 2010
i want to show dynamically change image from admin panel which is shown in master page, but i can't decide how to do it ?
View 4 Replies
Aug 23, 2010
is it possible to place an aspx page inside the update panel of another aspx page? if possible let me know the way to do that.
View 1 Replies
Apr 16, 2010
Here is what I have:
Dim cmsManager As New Telerik.Cms.CmsManager()
Dim currentNode As Telerik.Cms.Web.CmsSiteMapNode = CType(SiteMap.CurrentNode, Telerik.Cms.Web.CmsSiteMapNode)
Dim currentPage As Telerik.Cms.ICmsPage = currentNode.GetCmsPage()
Dim currentPageId As Guid = currentPage.ID
Dim pageFromDb As Telerik.Cms.IPage = cmsManager.GetPage(currentPageId)
Me.LastUpdateDate = pageFromDb.DateModified
Unfortunately .DateModified returns the last time that a page was edited instead of when it was last published.
View 1 Replies
Aug 25, 2010
How do I implement a custom 404 page on Sitefinity 3.5 using ASP.NET?
View 1 Replies
Jan 3, 2011
I have several features in admin panel. like userslist,change password for the user,delete user... Still now only one admin user can handle all this.
Now I want to give some features to some users.. ie certain users can view the list ,certain user can edit items in the list etc...
View 3 Replies
Feb 8, 2010
how can i make admin panel and how i can i upload files (e.g doc, pdf) in gridview and after upload shows link... ?
View 11 Replies
Jun 24, 2010
Creating 4 websites with one common admin panel
View 6 Replies
Jun 24, 2010
I am planning to develop around 4 product catalogue websites. The functionality of all the websites would be same. however the design, images and css would be different.
All the 4 websites will use the same admin panel, forums and database(MS Access) also.
How should I create such a system.
I dont understand what kind of folder structure should I create.
I would like to create following kind of folder structure.
(Root Folder)Admin Website ----> Website 1 (subfolder)
----> Website 2 (subfolder)
----> Website 3 (subfolder)
----> Website 4 (subfolder)
Root folder will have the database and all the common files.
Unfortunately, when I tried to create such structure, Dot Net Didnt allow me to create one website inside another
what kind of system should I use for maximum reusability.
I am a small time freelancer and cannot afford to build seperate websites for each of my client.
View 4 Replies
Aug 4, 2010
I am using SQL membership authentication and SQL Database for my ASP.NET Website and its using for my Organization (has multiple Branches in different cities).How I can get all user list which are recently online/Login in my system (WebSite) in my Admin Panel?
View 4 Replies
Sep 18, 2013
i have designed a website in that i have image tool but the image must change dynamically the changes is made in admin page.. by which tool we cn obtain that......
View 1 Replies
Jan 14, 2011
my the help of "tick event" of timer i execute some functios.
View 1 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
May 20, 2010
Every time I create a new aspx page and add some new photos and text, after I finish, I have to update page title, Web.sitemap, Sitemap.xml to feed search engines, static sitemap.aspx page, add photos to proper folders, update database to display feeds etc, and I have to remember to upload all new files including links to any new pdfs....This routine eats my time and drives me crazy.
I was wondering if there is such interface, where you need to create only 1 aspx page, for example "Articles" which can populate Texts, photos etc into pre-defined sections, but at the same time it displays with different URL's, so there is a permanent link to it. After you finish it creates a title automatically, based on article title, populates Web.sitemap - does all the dirty work. Similar to how blog engines, Joomla and Drupal work.
View 8 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
Apr 22, 2010
I've always depended on putting a control on an aspx page and double-clicking in design view to create my VB page. But this isn't happening in my current project. It creates an inline script in my aspx page instead. Where is the option or preference or XML file or.... that controls this?
View 5 Replies
Jul 15, 2010
Am currently working on my first ASP.NET projects. I have a requirement for a page where a user can enter their current address, and then add as many previous addresses as they like. I have created a Panel with the required text boxes in, and also an 'Add' button which will allow them to add another address. How could I make a copy of that Panel and add it to the page at runtime ... assuming that it is possible!!!
View 14 Replies
Feb 19, 2011
we want to create website based on asp.net and we want to update data in my site dialy. told me about admin module . is their any tutorials and screen shots for admin module
View 4 Replies
Mar 8, 2011
i am coding back-end of website. i have 3 categories. and 10 sub-categories.
i want to create a assign.aspx page, where users can dynamically assign(or link) sub-categories to category. i am not clear of how to do this
View 3 Replies
Jan 22, 2011
i have two controls on asp.net page , textbox and button and i want to write new page into textbox then when i hit the button i want to create new asp.net web page with textbox text. what do you want me to prefer to do this? is there any step by step tutorial or any code you have done before? thanks for asnwers.ok more detail about what i want.textbox control text is "contact" and i click my button control. button take textbox text "contact" and create new web form page which name is "contact.aspx and its code page contact.cs" . thats it. just create new web form page under root directory with button click.
View 2 Replies
Jun 24, 2010
I am trying to open a new HTML page(like pop up window) with data(I will get this data from database) when the user submits an order. I am using VS2008.
Does writing the Html code to a string and then use Response.Write will work correctly for opening the html as a pop up window? Is there any other better way to perform this action?
View 8 Replies
Jul 20, 2010
I want to build web pages using ASP.NET 4.0 (C#), and I want some controls to be appear for the admin role for example. And disappear for the normal user.
The question is: Is this method PERFECT? or there are many better methods to apply?
View 1 Replies
Oct 21, 2010
On admin side how to create first secure admin account when there is no users/admin exists without manuall entry ?On any website how we can create Super admin account who will handle all the things? Except the entry in db manually. I c# or vb.net
View 1 Replies