Web Forms :: Create Custom Aspx Page And Manage In Database?

Jul 28, 2010

I have to create the custom pages/ templates. User has to specify the fields and controls from UI and then we have to display the specified controls on an aspx page. We have mutiple users that are adding their custom fields and controls. How we can manage this data in database? Do we have to create different database for each user or we have to create different tables for each user in a single database? Also, I can go with any other option (XML, Sharepoint etc) so that all the data will be managed in a simpler form.

View 5 Replies


Similar Messages:

Sharepoint Custom Aspx Page With Database Connection?

May 7, 2010

i have created a custom aspx page whithin my sharepoint site with a sql server connection to a database on that server to select data when i view the page it works but when another user tries to view it it gives the following error :Server Error in '/' Application. Login failed for user 'GRINCORGuguK'.Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.Data.SqlClient.SqlException: Login failed for user 'GRINCORGuguK'.Source Error: The source code that generated this unhandled exception can only be shown when compiled in debug mode. To enable this, please follow one of the below steps, then request the URL:Add a "Debug=true" directive at the top of the file that generated the error. Example:

<%@ Page Language="C#" Debug="true" %>

or:2) Add the following section to the configuration file of your application:Note that this second technique will cause all files within a given application to be compiled in debug mode. The first technique will cause only that particular file to be compiled in debug mode.Important: Running applications in debug mode does incur a memory/performance overhead. You should make sure that an application has debugging disabled before deploying into production scenario. tack Trace:

[SqlException (0x80131904): Login failed for user 'GRINCORGuguK'.]
System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection) +248
System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj) +245

[code]...

View 4 Replies

SQL Server :: Create & Manage A Database Which Is In Computer With Sql Server Management Studio

Jul 28, 2010

I have a mdf database in my computer. And I have sql management studio 2005 installed. I would like to mange the mdf database with this program and I do not know how.

View 3 Replies

Web Forms :: Create A Website To Manage Ads?

Jan 28, 2011

I'm a newbie and I want to create a website to manage ads.

EX :

- Customer will give their website URL --> I will create i code that check that really their own.

- I will place some ads on the website and i want to create codes to manage them (Impressions, click,...)

How should i do it?

View 7 Replies

To Create A Custom Control That Adds Other Controls Visible To The Page Hosting My Custom ?

Oct 22, 2010

I want to create a custom control where I define several specifically named DIV sections. The code-behind logic of the custom control will perform operations on these named DIV sections. The page where the custom control is hosted needs to be able to add named controls to the DIV sections and perform operations on these named controls added to the DIV sections.

Let me explain a little further. In the custom control, I want to have code behind logic that fires the following Page Event and uses a condition to make one or another specifically named DIV section visible or not:

< _
ToolboxData("<{0}:BaseDetails runat=""server""></{0}:BaseDetails>") _
> _
Public Class BaseDetails

[code]...

how can I create a custom control which is able to generate the named DIV sections "DetailsNameDiv1" and "DetailsNameDiv2" where my custom control can check a condition and make one or the other visible. Also, I need to be able to add controls to these named DIV sections when I host the custom control and the control that I add to the named DIV section needs to let me set values of these controls from the code behind logic of the page (or usercontrol) where the custom control is being hosted (in my example, I am adding TextBox controls that I want to set the Text property from a SQL Data Reader).

View 3 Replies

Web Forms :: Create A Registration Custom Form And Link It To Sql Database?

Jan 5, 2010

I am new in ASP.NET, Could you please help me and tell me how to (create a registration custom form and link it to sql database) so every time new register do the registration i need these data to be sent to me as well as to him as an e-mail message, where and how can i look up his data?

View 2 Replies

Web Forms :: To Create Aspx Page And Automatically Update Page Title?

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

Web Forms :: Putting A Control On An Aspx Page And Double-clicking In Design View To Create VB Page?

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

Web Forms :: Dynamically Create Custom Table Based On Database Records

Oct 21, 2015

I don't want to use any asp.control to bind data so.

Is it possible to create dynamically customized table for database record.

View 1 Replies

Web Forms :: Custom Contol Which Include Textbox And CustomValidator In Aspx Page?

Apr 27, 2010

I have use my custom Contol which include textbox and customValidator in my aspx page.

iv noice it never get into the customValidator function.

View 2 Replies

Web Forms :: How To Create Aspx Page Dynamically

Feb 5, 2011

Can anyone tell me as how to create aspx page dynamically.

The controls are defined by user in run time.

Based on that i want to create aspx page.

Else its enough if i am able to generate basic structure of aspx page.(i.e The basic firm which generates when we add new webform in visual studio)Later i can develop with it.

View 7 Replies

Web Forms :: How To Create Dynamic Aspx Page

Dec 12, 2010

I want to create aspx or html page dynamicallly. what should i do.

I have a New Page Button on the page i want when user will click this button i want to open a popup window where user will enter the title and content of the page, i want to use Ajax Html Editor for enter the content in the page. and also he can upload any image.

View 5 Replies

.net - Disabling Authentication For A Single Aspx Page (custom Error Page)?

Mar 29, 2010

I am using a custom error page in IIS 6:<customErrors redirectMode="ResponseRedirect" mode="On" defaultRedirect="Error2.aspx"/>I want to disable authentication for the custom error page because the error being raised is related to an authentication module and I don't want to get into an infinite loop and I want to display a clean error page to the user. I have been trying the following configuration to do that.

<location path="Error2.aspx">
<system.web>
<authentication mode="None"/>

[code]...

View 3 Replies

Web Forms :: Create Tabs For Links In .aspx Page?

Sep 9, 2010

I need to create tabs for links in my .aspx page. I want the links to be separated out either with vertical lines or tabs. This code is part of my Master page.

<div
style="text-align:right"> <a
href
=
"start_page.aspx">Home Page</a>
<a
href
=
"">Default Page</a>
<a
href
=
"http://licensemon.enp.ril.com/">License Monitoring</a> <br
/><br
/></div>

View 2 Replies

Web Forms :: How To Create ASPX Page Dynamically At Runtime

May 1, 2013

I Need to create the Dynamical webpage(.aspx) at runtime.

View 1 Replies

Web Forms :: User Create Custom Page?

Sep 21, 2010

My project needs to let users to create a ASPX page where the page will hard code with all the web part zone and control. Does anyone know how can I do that? Remember that in our share point, it has a function that let a user create a new website or adding a new page into the website. I want to get this functionality works like share point.

View 3 Replies

Web Forms :: Create Multiple Files All Referencing The Same Aspx Page?

Oct 19, 2010

Basically I need multiple code-behind files each containing different functions for a page. Different classes do not do this because they are not connected to the page so their methods require parameters I want direct control of the page without the need for parameters.

I can only seem to crete one code-behind file and I need many. I've tried putting the aspx page in the App_Code folder but this causes an error.

View 1 Replies

Forms Data Controls :: How To Manage The Local Database

Aug 16, 2010

On my web page I'm trying to manage a tabular control of some kind that supports inserting. The data will be inserted locally on the page, with no connection to any kind of DB. The inserted data will exist only on this page and will be lost after navigatingto another page.A table that shows all the added rows and has an empty row for inserting is perfect.

View 5 Replies

Web Forms :: How To Create A Unique Name Aspx Page When Session Started And Delete

Dec 12, 2010

how to create a unique name aspx page when session started and delete when session is End in code behind

View 4 Replies

CSS Getting Distorted While Using The Custom WebUserControl In An ASPx Page?

Oct 6, 2010

I have a very simple Web UserControl derived from System.Web.UI.UserControl. At Design Time the user control looks perfect in the VS2008 Pane with all CSS styles. When I drag n drop this control on an aspx page, the CSS style gets applied but some texts get hidden and the CSS looks distorted.

I have checked the path of the CSS, UserControl and the ASPx page. All are in the same level under root. The aspx page just contains the UserControl in a FORM tag.

View 1 Replies

How To Hide Property Of Custom Control In Aspx Page

Feb 8, 2010

I'm writing ASP.NET custom control, and I want it to have a few properties which should be visible only from code behind during run-time - I mean, these properties should not be visible both in a designer and in a aspx code of page containing this control. I've tried to use following attributes:

[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
[Browsable(false)]
public List<Item> SomeData
{
...
}

but unfortunately this property is still visible in an Intellisense combobox when editing aspx page. Is it possible to hide this property everywhere besides server-side code ?

View 2 Replies

How To Create And Manage A Multi-tenant MVC Application

Apr 7, 2010

I want to create a multi-tenant application that uses the hostname to determine the customer.

For example:

CustomerOne.myapp.com
AnotherCo.myapp.com
AndOneMore.myapp.com

I can do the database and security side with no problems, I can also get the hostname from the URL, but what I am struggling to find out is how to create the basic plumbing that would allow a new customer to sign up online, provide their company name, and for the application to create the new URL, ready to be used straight away.

View 1 Replies

Security :: How To Create And Manage The Back-end Of The Website

Aug 3, 2010

We have chosen the asp.net 3.5 on creating our thesis project, building a mall website. Our first step was very simple, we've worked on the layout of the website, building the interface of the home page. and we are about to create some on the back-end part, which is creating a user-level maintenance and store maintenance.

View 2 Replies

Web Forms :: Can Use A TreeView And Database To Store Files And List Them On An Aspx Page

Apr 13, 2010

I have a project where I need to create a folder type view which will show a list of files, and the description of them to the user when they navigate to the website.

View 3 Replies

Web Forms :: Retrieve Image From Database And Display In Aspx Page Along With Other Data?

Mar 23, 2011

I am trying since more than 5 days to retrieve and display an image in a web page, no success so far.1. I have a table named image, with three fields ImageID, Img_data, Img_contenttype .2. I am able to display the ImageID as a link in my page.3. On clicking the link i am going to my viewImage.aspx?img=ImageID .This far it works ok. ImageID is passing in the query string.4. In this page imageID is being captured from query string and stored in ImageIdview int variable. viewImage.aspx has an image tag to display the image as below.

<asp:Image
id="image1"
ImageUrl='<%# "ViewImageHandler.ashx?imgid=" &#43; Eval("ImageIdview")

[code]...

View 8 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved