Lib To Build Admin Page From Database Schema?

Jun 21, 2010

I'm using ASP.Net and NHibernate to build a website. Now, I need to add some sort of administration functionality, and came to think of an old django tutorial I once ran through. Here the admin page was build for me, and I could customize it as I liked. I see no reason that I couldn't accomplish the same, somehow, in ASP.Net, when I got my NHibernate schemas, thus reducing all the boilerplate admin-code I need to do. Are there any libs out there, that you think will fill my needs somehow?

View 1 Replies


Similar Messages:

The "System.Web.Security.SqlMembershipProvider" Requires A Database Schema Compatible With Schema Version 1

Jul 20, 2010

I have a SQL Server 2008 DB with many tables filled with data and I used SQL Server Management Studio to generate a SQL dump by using the Script Wizard : Tasks -> Generate Scripts -> Script All objects in the selected database and also selecting the option to Script Data. I made sure to change the value of "Script for Server Version" to "SQL Server 2008". Then I created a new DB and ran the SQL dump on the new DB to generate an identical copy of the old DB. Then I assigned permissions to my default user to the new DB. Then I changed the connection string on my ASP.NET application to use the new DB. But when I run it, it throws the following exception -

Server Error in '/myapp' Application. The 'System.Web.Security.SqlMembershipProvider' requires a database schema compatible with schema version '1'. However, the current database schema is not compatible with this version. You may need to either install a compatible schema with aspnet_regsql.exe (available in the framework installation directory), or upgrade the provider to a newer version. 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.Configuration.Provider.ProviderException: The 'System.Web.Security.SqlMembershipProvider' requires a database schema compatible with schema version '1'. However, the current database schema is not compatible with this version. You may need to either install a compatible schema with aspnet_regsql.exe (available in the framework installation directory), or upgrade the provider to a newer version.

Source Error: An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. Stack Trace:.........................

View 2 Replies

Web Forms :: How To Build A Page URL From Database

Nov 5, 2013

I can write this code in Page load 

con = new SqlConnection(System.Configuration.ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString);da = new SqlDataAdapter("Select URL from Table1 where ID =" + Session["USERID"], con);cb = new SqlCommandBuilder(da);ds = new DataSet();da.Fill(ds, "Table1");string pageUrl = ds.Tables["Table1"].Rows[0]["URL"].ToString();
Response.Redirect(pageUrl);

This code working fine..I want to this code working on Hyperlink click Like below

<li><a href="http://Mysite.azurewebsites.net/?ID=<%=Session["USERID"]%>" target="_blank">URLS</a></li>

How can i modify my code?

View 1 Replies

Security :: Member / Role / Profile Database Schema Port To IBM Informix (IDS 11.x) Database?

Jun 14, 2010

I was just wondering if anyone has ever had to port the schema across? Are there any experts that could pitch their opinions on the achievability of this (mad) idea? I'm using the IBM Migration Toolkit and as expected its throwing a bunch of translation errors some of which were relatively easy to solve (vendor specific function calls for example) and some will take quite a while to pin down and work round.... however this is not my main concern.

If completed I expect I am going to have to basically rework all the System.Web.Profile/Roles/Membership namespace classes etc to work round the SQL limitations of informix (i.e. IDS11.x SQL server doesnt have a DEFAULT (newguid()) so that would have to be put into the calling method) (and any MVP comments really as I can slap my boss round with the weight after he ludicrously agreed to this project for a client without doing any research...)

View 1 Replies

DataSource Controls :: Tried To Update My Current Database With The Triggers To Input The Schema Into The Already Existing Database Can't Get That To Work?

Jan 22, 2010

Creating a system with web front end and SQL backend (microsoft obviously). I have tried using the asp.netsqlprovider but i can;t as i am only allowed one database on the server, so i then tried to update my current database with the triggers to input the schema into the already existing database.Next step i create my own table with two simple fields of username and password and try and authenticate that way, i can't get that to work either.

I ahve limited permissions on the network as i am a University Student. I really don't know what to do. Never had to create a log on system before and i thought it would be far simpler than this. I ahve used Microsoft's sqlprovider schema before and it worked fine. I have also authenticated via IIS and AD too before. I can't do any of those two in this instance it seems.I need an alternative for logging in users, if needs be in can be crude. I also still need to have some kind of two different views too for logged in users and not logged in users, but that can change if needs must.Don't let me down people, haha. Think this posts in the correct place, i could not find another one i thought could be more relevant.

View 4 Replies

VS 2008 - Put The Login Database Schema Into Dev?

Feb 16, 2010

In my asp.net 2008 project, I am using the login controls... In the local sql server, there are all the necessary tables and stored procedures which the system creates for the relevant login controls. All working fine. I notice in the webconfig file there is an entry under connections, i.e.:

<add name="LocalSqlServer" connectionString="Data Source= ...

Now I would like to put the project into the Dev server. What do I do in terms

1- putting my web project into the Dev machine so that we can test it on the Dev server?
2- how do I put the login database schema into Dev? Is it just a matter of restoring my local DB into Dev?...

View 12 Replies

ADO.NET :: Want To Use That Database Schema In Project Using Sql Server

Mar 8, 2011

i am having a database in mysql and i want to use that database schema in my project using sql server. i have a Nhibernate c#do code generated by mysql. how can i use that code.

View 1 Replies

SQL Server :: Create Schema In Database?

Nov 8, 2010

how to create schema like below for my database... and why it usefull

dbo.Employees.EmployeeNumber,
dbo.Employees.LastName + ', N' +
dbo.Employees.FirstName AS [Full Name],
dbo.Employees.HourlySalary,
dbo.TimeSheets.TimeSheetCode, dbo.TimeSheets.Week1Monday,
dbo.TimeSheets.Week1Tuesday, dbo.TimeSheets.Week1Wednesday,
dbo.TimeSheets.Week1Thursday, dbo.TimeSheets.Week1Friday,
dbo.TimeSheets.Week1Saturday, dbo.TimeSheets.Week1Sunday,
dbo.TimeSheets.Week2Monday, dbo.TimeSheets.Week2Tuesday,
dbo.TimeSheets.Week2Wednesday, dbo.TimeSheets.Week2Thursday,
dbo.TimeSheets.Week2Friday, dbo.TimeSheets.Week2Saturday,
dbo.TimeSheets.Week2Sunday
FROM dbo.Employees INNER JOIN dbo.TimeSheets

View 2 Replies

DataSource Controls :: How To Write A Database Schema

Jan 12, 2010

I have 3 different databases where some tables are common.

View 16 Replies

DataSource Controls :: Database Schema Could Not Be Retrieved?

Nov 18, 2010

I recently installed the latest Oracle Data Provider for .NET(ODP.NET 11.2.0.1.2), due to the fact that Microsoft Oracle Client is deprecated. Ever since the new installation, my SqlDataSource control stopped working. When I try to configure the data source of the SqlDataSource and test the connection, it always gives me the following error message:Database schema could not be retrieved for this connection. Please make sure the connection settings are correct and that the database is online.

OCIEnvCreate failed with return code -1 but error message text was not available. at DataObjectSupport(721,6)

I know for sure the connection settings are definitely correct and the database is online for sure, because any databinding I did manually works perfectly well. I can manually bind to a Gridview, ListBox controls and display the data without any problem. The only problem I have is using the SqlDataSource. This is painful because Gridview and Listview have a lot of cool built-in features. When you databind the controls in the code behind file, you lose all the features.

I have added ASPNET to the Oracle home directory and granted it full control access and retarted the computer but it doesn't work. I'm using Visual Studio 2010 and the database is Oracle 10g. Does anybody know why I'm having problem with SqlDataSource only?

View 1 Replies

Security :: Adding SqlMembershipProvider Schema To A Database?

Aug 7, 2010

I'm currently creating a small web app that requires users to log in before accessing any features.

I'm using Visual Web Developer 2010 and I have created a database in the App_Data folder of my project that I now wish to add the required tables, views and stored procedures to in order to use the SqlMembershipProvider. I have ran the aspnet_regsql file and entered the required details and completed all the required steps; however, when I return to Visual Web Developer and refresh the database I created, nothing happens, there are no tables or stored procedures.

Although nothing has been added to the database in my project, when I open up SQL Server Management Studio, my database appears with all the relevant tables, views etc.

Is there any reason why the database with all the required tables etc appears in SQL Server Management Studio but not in my project in Visual Web Developer?

I'm getting rather confused as I have completed this before on another project on a different machine and it worked fine.

View 2 Replies

DataSource Controls :: Deploy Database Project Under Different Schema?

Jan 7, 2010

I've created a Data Base project with some CLR functions and stored procedures.

I'd like to deploy the assembly under different schema then the default dbo.

Is it possible?

View 4 Replies

SQL Server :: Database Schema For Online Account Opening Form

Sep 9, 2010

what should be the database schema for online account opening form with joint account holders and every participants (in a joint account) have seperate contact and personal detials.

View 1 Replies

DataSource Controls :: Uniquely Extract Tables From Database Schema?

Jun 11, 2010

I am looking for a fast way (either by script or Query statements) that would enable me uniquely extract some tables from my database schema.

The tables I wish to extract have some unique columns like x and y coordinate columns and i want to extract only the tables that have these coulmns in them.

My database schema is very large with 100s of tables that i cant just go through the tables one by one.

View 4 Replies

Updating Schema Of Production Database With NHibernate And Adding Default Data?

Sep 24, 2010

here's the situation:

You're using NHibernate with Fluent NHibernate for mappings.

You have an application in production with a database with live data You're adding a new feature in development and it requires a new database column.

The new column cannot be blank. For example, I recently had to a DateCreated column to a table and the app now uses that date. As the only time the data will be missing is now, it seems unnecessary to add code to check for errors.

In my application I have an updater which can execute a SchemaUpdate to add the new database column - however, the application will starting crashing as it is expecting a value in the new column.

I need to get some sensible default data into that column. In this case I manually ran an Update to set the date to the current date (good enough for the situation). In this particular case I believe that you cannot set the column default to getdate() using fluent mappings.

Keep a schema version number in a config file In the updater that runs SchemaUpdate start adding upgrade methods for each version. These methods would run updates to add default data (or other required actions).

After the schema update has been run, call all methods required for a version greater than the current version (i.e. those that haven't previously been run). So if the app is now version 4 and version 2 is installed, methods 3 and 4 would be run.

View 3 Replies

Creating 4 Website With Same Database And Admin Panel?

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

Entity Framework 4 - Update Database Schema From Model. Without Wiping The Table Data?

Jun 29, 2010

I'm working on a new project where I have the luxury of working from a Model to Database approach using Entity Framework 4.

The project I'm working on is taking an agile approach where different phases will be rolled out over time.

Will the Model First approach work in my case? I noticed when you "Generate Database from Model" it recreates the entire schema from scratch which will obviously wipe all the data that is in the db. I was hoping for a more "Update Database from Model" approach where the db would just be altered to reflect the changes rather than recreated

View 1 Replies

C# - Inner Exception(1): The Execute Permission Was Denied On The Object 'proc_putObject', Database 'SharePoint_Config', Schema 'dbo'

Mar 7, 2011

While i am deploying my solution in to sharepoint, it is showing:

"Inner exception(1): The EXECUTE
permission was denied on the object
'proc_putObject', database
'SharePoint_Config', schema 'dbo'".
Unable to deploy the solution.

View 3 Replies

ADO.NET :: Managing TypedDataSets When There Is A Change In Backend Table / Stored Procedure / Database Schema

Sep 15, 2010

if there is any easier way to synchronize the TypedDataSets with the chages made to backend Table / Stored Procedure schema. I use Typed DataSets in my project extensively and I found them very useful and easier to code, but difficult to maintain

The difficuly I have always faced is whenever there is a change in a backend database table structure or stored procedure that is linked to any of the Typed DataSet in our project requires to recreate whole DataSet again by scrapping the old one. The backend changes will not be reflected unless and untill you recreate the whole stuff again.

Is there any easier way to synchronize those typed datasets with the changes made to backend database schema or any other workaround that will not required to recreate the whole DataSet again.

View 2 Replies

Permission On Admin Folder, Only For Role=admin?

Jun 13, 2010

I have an Admin folder which contains 4-5 aspx pages. I want to that only user with role="admin" can view those files. What settings i need in web.config?

View 1 Replies

Databases :: Unable To Import Database File Into MSSQL Using 'My Little Admin'?

Sep 13, 2010

I am pretty good with HTML, PHP & MYSQL but this is my first go at working with a windows host and an ASP script. I recently purchased a script that matches my clients needs and when i have opened the folder to view the files its all double dutch to me apart from one css files which makes perfect sense to me!

Im stuck with is the database file included in the template, i ave been unable to import it into MSSQL using 'My Little Admin' which is the control panel provided by my hosting provider. Looking through the file with notepad it seems to contain the information for several tables but i cannot figure out for the life of me how i import it with 'My Little Admin'

View 3 Replies

C# - Login With Admin And Guest - Access The SQl Database In The Read Only Mode ?

Jan 11, 2010

ok i have my GUI installed on the server which has users as administrator as the role of an administrators and user1 which has the role of the guest...I have one project and there are different pages for administrators and guests... when the login screen comes up and the administrator logs in he should be redirected to the admin.aspx page and for user1 he should be redirected to the guest.aspx page.

Now the scenario is i have 10 users in a company and one administrator. This GUI is on the network server and these 10 users are able to access it as guests.

How do the guest user logs in and can access the SQl database in the read only mode but when the administrator user logs in he can access the database in the read and write mode.?? I dont know how to do this really... any suggestions

(by IIS server or webconfig or some setting in SQL server)

and the previous question is what to use (forms or windows authentication) where can i get information on how to set up this kind of authentication???? Is there the need to use impersonation also??

View 2 Replies

Data Controls :: Unable To Redirect To Root Page From Page Inside Admin Folder

Oct 21, 2015

I am not able to redirect the user to "SimpleUserLoginAfterRegistration.aspx" page if Administrator is in any one of the .aspx file inside Administrator Folder.

I tried to use: Response.redirect("/SimpleUserLoginAfterRegistration.aspx") But, it is saying Page not found error.

View 1 Replies

Forms Data Controls :: Create Admin Pages Of Database Tables?

Feb 4, 2011

I have used a microsoft tool before that was allowing me to automatically generate admin web pages from database tables. By admin web pages I mean pages that allow me to do CRUD operations on my tables.

View 1 Replies

Css - Layout For Admin Page

Jan 21, 2011

I have to develop a admin page in asp.net. For that I need a master page template which looks like admin panel, menu, CSS. I am seeking layout for admin panel I am not sure if this is the right place to ask this question. If it is not I request moderators to move this question to appropriate place.

View 2 Replies







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