Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
R

r_e_h_a_n

@r_e_h_a_n
About
Posts
15
Topics
11
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • data unbinding relate...urgnt plzz
    R r_e_h_a_n

    hi, i make a search button and bind data with textboxes, everything is fine, now i make a clear button which will remove textboxes data after when i finished search into the database using search button i use "Clear()" method for all text boxes but now when i press clear button it clears all data in the textboxes but PostalCode and Year is not unbinding the database(not refreshing/clearing). how i can prevent it. remember i'm using two different buttons. and i know the textbox1.DataBindings.Remove()method so plz give me another choice to remove binding from these two fields. thx m.reehanmunir

    C# database wpf wcf

  • radio button in windows form..urgt plzz..
    R r_e_h_a_n

    i made a form of student registration. here i create two radio buttons against gender (Male,Female), and create database connectivity of these two buttons, now when i click on radio button for male or female it gives me error that "number of query values and destination fields are not the same". how the entries of radio button goes in databse plz tell me. i'm so worried following is my code which use for database connectivity of radio buttons. ------------------------------------------------------------------------ OleDbConnection con = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=D:\\C#Projects\\practice1\\db1.mdb;Persist Security Info=False");//("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=D:\\C#Projects\\practice1\\SMSDB.mdb;Persist Security Info=False"); con.Open(); string idata = "insert into db1 values('"+txtID.Text+"','"+rbmale.Text+"','"+rbfemale.Text+"')"; OleDbTransaction tx = con.BeginTransaction(); tx.Commit(); OleDbCommand cmd = new OleDbCommand(idata,con); cmd.ExecuteNonQuery(); con.Close(); ------------------------------------------------------------------------- m.reehanmunir

    C# database csharp security help

  • Update command..plz urgnt
    R r_e_h_a_n

    "this is my code now plz help me according to this" here "password" is database field;" thx OleDbConnection con = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=D:\\C#Projects\\practice1\\SMSDB.mdb;Persist Security Info=False"); con.Open(); string updata = "update SMSDB set password= '"+txtnewpwd.Text+"' where password='"+txtoldpwd.Text+"'"; OleDbTransaction tx = con.BeginTransaction(); tx.Commit(); OleDbCommand cmd = new OleDbCommand(updata,con); cmd.ExecuteNonQuery(); con.Close(); m.reehanmunir

    C# database help announcement

  • Update command..plz urgnt
    R r_e_h_a_n

    "This is my code now plz help me according to this code" here "password" is the field of database;" OleDbConnection con = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=D:\\C#Projects\\practice1\\SMSDB.mdb;Persist Security Info=False"); con.Open(); string updata = "update SMSDB set password= '"+txtnewpwd.Text+"' where password='"+txtoldpwd.Text+"'"; OleDbTransaction tx = con.BeginTransaction(); tx.Commit(); OleDbCommand cmd = new OleDbCommand(updata,con); cmd.ExecuteNonQuery(); con.Close(); m.reehanmunir

    C# database help announcement

  • Update command..plz urgnt
    R r_e_h_a_n

    Hello All, I make two forms First is Login Form and second is "Change Password" form, when change password form opens here two fields are showed one for OldPassword and other for NewPassword, now my intension is that how i can update an old password in the database (i'm using MSAccess database) tell me the command of Update even i know this command and also apply it but it dosen't work, it gives me error "Syntax error in UPDATE command" on runtime. plz assist me in this way. m.reehanmunir

    C# database help announcement

  • email related
    R r_e_h_a_n

    i want to send email from my ASP.NET feedback form to hotmail or yahoo ID. can anyone plz tell me what will the smtp server address of yahoo or hotmail. what i write against this line of code. And tell me that port number is necessary for this,if "yes" and how this will occur... SmtpMail.SmtpServer = ""; m.reehanmunir

    ASP.NET csharp asp-net sysadmin beta-testing code-review

  • session related...
    R r_e_h_a_n

    I created a login page with session, login and making session working good but there is a problem that when a user login successfully his/her Firstname and last name should be apear in the Welcome Page e.g( a username "reehan" logged in with his password, he logged in successfully and redirected to another page there message should be show "Welcome! Reehan Munir" Rehan Munir could be retrieve from database of that particular user "reehan") have any idea about that. m.reehanmunir

    ASP.NET database help

  • session related..
    R r_e_h_a_n

    I made a login page, where user will register and then login using their names and passwords, session is creating in this page for each user who will login, now my problem is that i want to retrieve the usernames from database of each specific user who logged in, and a message e.g (Welcome! Rehan Munir) should be show on page. "Rehan Munir" is ther users lastname and first name, how this will happen and plz tell me that when a user logged in he should redirect to another page and welcome msg should be shown on the next page, have any idea related to this work (Plz don't suggest me starter kits, and code in VB.NET) I'm a C# developer so plz tell me in sense on C# coding. m.reehanmunir

    ASP.NET csharp database help

  • login system..urgnt plz..
    R r_e_h_a_n

    i download the starter kit, but how to use it plz explain me. m.reehanmunir

    ASP.NET csharp tutorial asp-net question

  • login system..urgnt plz..
    R r_e_h_a_n

    I've to create a login system, can any body tell me how to create session of loginned users, and how i can populate the data of loggined users which was saved at the time of signing up a user. e.g, (Username,Location,Phone#,Address, etc..) when a user login in he could see his data in text fields and could update his data also(how i bind data with text field also tell me this). My question is in parts so plz tell me step by step who want to assist me. Thx in advance for him. And plz tell me the codings in (ASP.NET using C#) bcz i'm not able to do this job in VB.NET.Thxxxxxxxxx m.reehanmunir

    ASP.NET csharp tutorial asp-net question

  • how to create session..urgnt plzz...
    R r_e_h_a_n

    i'm newbee in asp.net i create a login page and signup page in asp.net it is registering and signing in users successfully now i want to create a session that when a user sign in he cud access his profile also in session(any user who is registered), how i create session, i'm using C#(ASP.NET) not in VB.NET,plz help me in this regard. thx m.rehanmunir

    ASP.NET csharp asp-net help tutorial

  • how to get signed in user profile...urgntplz...
    R r_e_h_a_n

    thx again for ur assistance in this regard yes i did it, users are login successfully, now what will be the next step ? waiting for ur response reehanmunir

    ASP.NET tutorial csharp asp-net database help

  • how to get signed in user profile...urgntplz...
    R r_e_h_a_n

    i'm creating a login system, when a user login successfully, then open his profile fornt of him soon after login successfully. And could also edit his entries in text fields,which will be replaced with existing entries in the database, i want to create edit link or button front of each text field/dropdownlist or something like this, plz help me in this regard, tell me the article related to it, or whome will answer me plz send me step by step process bcz i'm new in asp.net. Even his step by step processes may be in short hands but should be understandable, but plz in step by step process. lot of Thannnnnnnnnnnnnnnnnnnnnnnnnnnnkkksss for himmmmmmmmm in advance. reehamunir

    ASP.NET tutorial csharp asp-net database help

  • online resume creation in asp.net.......urgnt plz...
    R r_e_h_a_n

    Somebody knows how to create online resume in C#(ASP.NET) as www.bayt.com are doing. If someone knows abt it plz help in this regard, i'll be thankful him/her for his/her assistance for me. and urgent plz. If u have an article or sample regarding this topic plz tell me.:confused: m.rehanmunir

    ASP.NET csharp asp-net com help tutorial

  • Fetching Database Records in Form Fields!
    R r_e_h_a_n

    My problem is that , i can connect database of all types, but how to fetch data from database in asp.net forms back, e.g i make a form in asp.net "FirstNanme TextField","RollNumber TextField","Class TextField" now when i enter data in these fields it will be successfully entered in the database. Now i want to fetch them in TextFields back from the database. mean i make a search field on my form and try to search some entries which user entered in database wehn i search for a specific name in search field it will be show in my form text fields, i'm not taking about datagrid o.k, (you can say when we signin in our yahoo id and see our specific profile in yahoo only the authenticated and specific user can show his dataentries in textfields in yahoo personal profile and can change his information), plz help me in this regard.Thx m.rehanmunir

    ASP.NET help csharp asp-net database tutorial
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups