Implement Session And Retrieve From Mysql Table?

Mar 21, 2011

How do I implement this session: (UserID is part of the login table)

Session["UserID"]="usrName";
Into this code?
using System;
using System.Data;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data.Odbc;
using System.Data.SqlClient;
public partial class Default2 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Login1.Authenticate += Login1_Authenticate;
}
protected void Login1_Authenticate(object sender, AuthenticateEventArgs e)
{
//database connection string
OdbcConnection cn = new OdbcConnection("Driver={MySQL ODBC 3.51 Driver}; Server=localhost; Database=gymwebsite; User=x; Password=x; OPTION=3;");
cn.Open();
OdbcCommand cmd = new OdbcCommand("Select * from User where username=? and password=?", cn);
//Select the username and password from mysql database in login table
cmd.Parameters.Add("@username", OdbcType.VarChar);
cmd.Parameters["@username"].Value = this.Login1.UserName;
cmd.Parameters.Add("@password", OdbcType.VarChar);
cmd.Parameters["@password"].Value = this.Login1.Password;
//use asp login control to check username and password
cmd.Parameters.Add(new OdbcCommand("@UserID", 'id.int'));
OdbcDataReader dr = default(OdbcDataReader);
// Initialise a reader to read the rows from the login table.
// If row exists, the login is successful
dr = cmd.ExecuteReader();
int id = cmd.Parameters["@UserID"].Value;
Session["UserID"]="usrName";
if (dr.Read())
{
e.Authenticated = true;
Response.Redirect("UserProfileWall.aspx");
// Event Authenticate is true forward to user profile
}
}
}

I need to be able to retrieve the correct UserID when some one inputs there username and password upon login and then some how retrieve it on a new page something like this to retireve it but unsure?

string usrName = Convert.ToString(Session["UserID"]);

I just dont know how to add the first part, the session into my login code so I can some how store the UserID in my session but also retrieve the correct UserID from the submitted data that takes from my mysql login table.

View 1 Replies


Similar Messages:

Databases :: Use MySQL Views Or Implement XML

Feb 3, 2011

I´m involved in a project that requires MySQL interaction, and I´m designing (or programming) the front end interface. SCENARIO: I´ve a MySQL database. (Now... Imagine a Webpage.aspx). I have a table inside the page with 2 rows: The first row has 3 columns... yes, cells!!, and the another one has no columns. In the first cell (1 row, 1 column) I have a treeview with a panoramic of my database (Treeview-Datasource: XML file that I build by myself with the hierarchy of my database). Then, in the 2nd cell (1 row, 2 column) I have a Radiobuttonlist; the aim of this cell is show only the name of every data placed in the selected entity (located in the treeview). And in the third cell (1 row, 3 column) I have 3 buttons: the first one is "NEW" (Should create a new item in the entity of the database - selected in the treeview) the second one is "EDIT" (Should edit the item of my database_entity selected in the radiobuttonlist)
And the third one is "SAVE"... (No words!!)

In the fourth cell (2 row, unique column)I have a FormView. To fill data, to arrange it in two columns, and to show textboxes allowing me introduce information to perform the button actions. I´m new in this, but I´ve seen that probably, I can make it using views (programming them in the database) or using XML files (declarating and querying my database as well as I want) but, in any case, the two ways requires build a view or xml file for every entity of my database that I want modify. I´m Sure that all of us know a short method or something.

View 10 Replies

Databases :: Automatic Transfer Data From One Table To Another Table In Mysql?

Sep 6, 2010

i done one web application in this application i need to transfer the data from one table to another automatically when the time is 10.00PM. i need to write this function sepearte time function not in page load function.the user select any of page the data should be transfer from one to another without page load only using time control function..

View 5 Replies

Databases :: Store And Retrieve The Image Using Mysql?

Feb 13, 2010

I am developing the project in C# . i have store the image to the mysql database and reterive the image in Asp.net

View 1 Replies

Databases :: Retrieve Data From MySql And Display It In Gridview?

Jan 5, 2011

I want to retrieve data from MySql database and display it in gridview in asp.net.I want to retrieve data from two tables which has no common fields to link.Is there any possible way to display in gridview?

View 3 Replies

DataSource Controls :: Way To Retrieve Data From A Table, Modify And Insert It Into Another Table

Jun 13, 2010

Basically i deal with two tables.i have a table T1 of the following format:id company_name i need to read this data and create a table T2 as followsi wrote the following code. it worked fine for retrieving data and modification but fails to insert the modified data into the 2nd table.the error is, it does not recognise the value for @token

ArrayList dynarr=new ArrayList(); // global variable
protected void Button2_Click(object sender, EventArgs e)
{
int row = 1; int i;
string strcmd = null;
string Connection = "Data Source=....";
SqlConnection conn = new SqlConnection(Connection);
string str = "select company_name from T1 where ID=@ID";
[code]...

View 2 Replies

C# - Displaying Mysql Table With Asp

Feb 19, 2011

I want to display a table from an mysql Db with asp.net. What do you suggest is the best way to to this? I'm new to mysql with asp.net.

View 1 Replies

Forms Data Controls :: Store Gridview Datatable In Session And Then Retrieve From Session And Store Database

Nov 11, 2010

Its related to datatable in gridview store in session and then session retrive and store to database. basically i am using gridview here creating new row for button click and these row adding untill user's last entry then submit all these entry to database. so i want to use session variable to store this data temporarily and after final entry user click on submit button and all data shold be save in db.

View 9 Replies

Databases :: Using Mysql Installed Mysql And Mysql Net Connector?

Dec 26, 2010

i was just using mysql i installed mysql and mysql net connector. its installed successfully but unable tp add to references.

View 3 Replies

Security :: How To Retrieve UserID Off From The Session, Or Are There Other Ways To Retrieve UserID From

Jun 28, 2010

I have used session to the creation of user and led them to the edit page ..But how do I retrieve my userID off from the session, or are there other ways to retrieve userID from?

View 3 Replies

Databases :: Why Are The Table Columns Different From MySQL Then With MS SQL

Sep 9, 2010

I try to work with MYSql (because it's free) and I saw that the colums are different then when they are exployed in MS SQL?

Why is this? The most strange differents is that in MySQL there is no applicationId in the membership table.

This differents in tables cost me more time to do a export and import from MS SQL to MySQL.

View 1 Replies

VS 2010 - How To Set Primary Key In New MySQL Table

Jun 20, 2012

I have a data connection to an existing MySQL database. The database has various tables. I am creating a new table, and want to set the ID field to be the primary key. I can not see a way of doing this inside Visual Studio. I saw one suggestion to right click on my ID field in either the Server Explorer or XSD and select Set As Primary Key (or something like that), but I don't have that option displayed.

View 4 Replies

MySQL As Session State Not Working On Shared Host, Only Localhost

Feb 25, 2011

I have encountered this problem before on a few shared hosts but cant remember the fix. I have spent almost 2 days googling and I have even gone through 2 external hd's of backups of old projects and read the web.configs but I just cant put my find it and I dont think I am googling the correct terms...

I am using Mysql Connector/Net to store asp session state.

The mysql db is on the hosting server ( I have no mysql locally).

Opening a page locally creates a session in the db.

Opening a page on the host does not.

I have seen this issue before but was a long time ago and I have searched a few of the answered questions here but not too extensive, I'm sick of searching.

View 1 Replies

How To Insert Bulk Data Into Mysql Table At Once

Jun 1, 2010

I have a requirement that I need to read an excel sheet using asp.net/C# and insert all the records into mysql table.The excel sheet consists of around 2000 rows and 50 columns. Currently,upon reading the excel records ,I am inserting the records one by one using a prepare statement into mysql table.But its taking around 70 secs to do so because of the huge data.

I've also thought of creating a new datarow, assigning values to each cell,adding the resulting datarow to datatable and finally calling dataadapter.update(...).But it seems to be complex because I got around 50 columns and hence I'll have to assign 50 values to the datarow.

View 1 Replies

Databases :: Create Table From Mysql Database

Jun 5, 2010

i am very new to the programming and also asp.net. i have an assignment to create a table on webpage the information is coming from mysql database.

View 2 Replies

Databases :: Create Back Up MySql Table

Sep 1, 2010

how can i create a backup table for my MySql base table.my base table name is FAB when ever user store the data into FAB table same records should be stored into back-up table automatically.how can i acheive this.i am really thank full to you if any one provide me solution.

View 3 Replies

Databases :: Maintain History Of MySql Table From ASP

Feb 5, 2010

I have applied audit trail to my webform/table its working fine.I am able to maintain the History(action,action_date) of the MySql database table from ASP.net but I want to save user name i.e action_by too so i will have history of who changed the data and when, how can i acheive to save username in history table.i have login webform in my application. History MySql Table.

View 1 Replies

Trying To Configure ListView - SqlDatasource For A MySql Table?

Jun 9, 2010

i'm using ASP.NET + a MySql Db. I'm trying to configure a ListView so i've written:

<asp:SqlDataSource ID="dsDatiUtente" runat="server" ConnectionString="Server=12.28.136.29;Database=mydb;Uid=m111d1;Pwd=fake;Pooling=false;"
ProviderName="MySql.Data.MySqlClient"
SelectCommand="SELECT * FROM user WHERE idUser=@IdUser"
/>
At the beginning of my aspx page i've added
<%@ Import Namespace="MySql.Data.MySqlClient" %>

But if i click to the sqldatasource and click "Refresh Schema" i got this error:

"Unable to retrive schema.... Unable to find the requested .Net Framework data provider" For instance, i've installed it , but i've also uninstalled old version, then installed new versions. In my project i simple copy Mysql dll into "bin" folder, then add a reference to that dll. I'm not sure is the corrected way...

I need to have the "refreshed schema" to permit vs.net to build automatically my listview ... if i can't to "auto build" listview, i have to write all code by hand, and it is a too expensive work me :(

View 2 Replies

Display The Mysql Table's Contents Into Gridview?

Jan 12, 2011

what can I do when my all database table's name into dropdown list & when i select or click the table name from dropdown list display the whole field into the gridview dynamically.

View 3 Replies

Databases :: Make Table Available To All Users In MySql?

Nov 9, 2010

I'd like to have to two tables Countries and states and make it so that any MySql user can access them for the purpose of building databiund drop down lists. What permissions do I need to assign the tables or what's the best way to do this?

View 1 Replies

Databases :: Delete Duplicate Records From MySQL Table?

Sep 20, 2010

I have Revision column in Quote table with time stamp (MySql table) now i am viewing the entire date and time my end user want to view only Date he doesnot want to see time how can i pull only date.i am displaying revision column in two ways one in grid view and another one in field value

Query in my Grid view

Dim query As String = "SELECT QuoteNumber,Revision,Vendor,PartNumber,status,Customer,Requestor from quotes"

On select check box in grid view, filed values will be loaded with data.

field value

txtRev.Text = dt.Rows(indx)("Revision").ToString()

View 3 Replies

Databases :: Automatic Insert Data To Mysql Table?

Sep 3, 2010

Actually i need to transfer data from one table to another table in mysql with codition of Time.for example i need to transfer data at 10.00am when user login at 10.00am it must be insert into another data table.. if anybody know time control

View 2 Replies

Databases :: MySQL And Asp Table Adapters - Error When Trying To Use Subquery

Nov 1, 2010

I have been trying to create a sql statement that uses a subquery to join 2 oracle tables to create a strongly typed table adapter. For example:

Select productName, (select categoryName from categories where categories.category_id = products.category_id) as Category from Products

The ASP .Net tutorial I am working through recommends using subqueries instead of joins for the insert, update and delete commands to be automatically generated by Visual Studio 2010. When I click Finish in the table adapter wizard I get the following error (I am using MySQL version 5.1 and the MySQL Data Connector 6.3.5)

Generated SELECT statement.
Error in SELECT clause: expression near 'SELECT'.
Error in SELECT clause: expression near 'FROM'.
Missing FROM clause.
Error in SELECT clause: expression near','.
Unable to parse query text.

View 3 Replies

How To Implement A Session

Apr 1, 2011

I have a piece of code which loads either french or english text and 2 link buttons that allow to switch between.

[code]....

What would be an efficient way of displaying the link buttons and text if both English and French exist and the session exists in either EN or FR.

I've thought of using panels to hide the buttons or text, but the main problem is having the page refresh to set the Session variable. Response.redirect(URL) to refresh the page i suppose and i can't find a better way to display the text other than to Response.write it since then i'd need a ton of labels.

View 1 Replies

C# - RROR [HY000] [MySQL][ODBC 3.51 Driver][mysqld-5.5.9]Not Unique Table

Mar 23, 2011

Problem in my sql syntax I get the error:ERROR [HY000] [MySQL][ODBC 3.51 Driver][mysqld-5.5.9]Not unique table/alias: 'WallPosting'

string theUserId = Session["UserID"].ToString();
using (OdbcConnection cn = new OdbcConnection("Driver={MySQL ODBC 3.51 Driver}; Server=localhost; Database=gymwebsite2; User=x; Password=x;"))
cn.Open();
using (OdbcCommand cmd = new OdbcCommand("SELECT WallPosting.Wallpostings FROM WallPosting LEFT JOIN WallPosting ON User.UserID = WallPosting.UserID WHERE
[code]...

View 3 Replies







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