No video

How to create User Registration Form in ASP.NET using SQL Server Database? [With Source Code]

  Рет қаралды 99,740

RunCodes

RunCodes

Күн бұрын

Пікірлер: 47
@RunCodes
@RunCodes 4 ай бұрын
Try this latest technique: How to Create a User Registration Form in ASP.NET using SQL Server, Visual Studio 2022 & Bootstrap? kzbin.info/www/bejne/fJ3YY4CQr62hbck
@shrutisuryawanshi4373
@shrutisuryawanshi4373 2 жыл бұрын
Thinking difficult but you just made it so easy. Thank you for giving such nice video with detailed description.,,🙏🙏😊😊
@RunCodes
@RunCodes 3 жыл бұрын
do you like our work? does this tutorial help you? if so, you can support us at www.patreon.com/RunCodes
@varkalacharitha200
@varkalacharitha200 2 жыл бұрын
Seen many videos but none helped.this video is very clear.thank u so much
@vidyabca4714
@vidyabca4714 Жыл бұрын
Hi sir I like your teaching method it's very nice explained in line by line student has learn for veary easy
@Ajay-25
@Ajay-25 2 жыл бұрын
Sir aapko Dil se Thank you so much ❣️🙏 Aapki iss video se mujhe vo mil gya jisko me search kr rha tha Thank you Thank you Thank you Thank you so much Sir 🌱❣️
@nakulanand2725
@nakulanand2725 2 жыл бұрын
Thanks for the tutorial its very helpful.
@shuhaib_karasseri
@shuhaib_karasseri 2 жыл бұрын
Its simplest way 💖 thanks brother
@ruru4500
@ruru4500 2 жыл бұрын
Alhamdulillah!!! It worked. Thanks a lot
@markrichmondfirme5378
@markrichmondfirme5378 Жыл бұрын
thank you so much, it helps alot😊
@siddheshchogale-ko2nu
@siddheshchogale-ko2nu Жыл бұрын
Thank you Sir Thank you so much
@PremChhetri
@PremChhetri 2 жыл бұрын
Ramro 🥰
@udaypratapsingh6820
@udaypratapsingh6820 4 жыл бұрын
Superb....sir...👌👌👌
@ankursingh8783
@ankursingh8783 2 жыл бұрын
Thank you bhai ❤️❤️
@rydellthomas1183
@rydellthomas1183 5 жыл бұрын
i love this video so much ... especially since we need to do this for a project for my university (which we were taught nothing about)....also how will we link the user name and password to a login page
@RunCodes
@RunCodes 5 жыл бұрын
Here you go kzbin.info/www/bejne/Y3mrqaF_o8udi9k
@cricketclip312
@cricketclip312 4 ай бұрын
Can u send web.config file for the same code?
@RunCodes
@RunCodes 4 ай бұрын
@cricketclip312 How to Create a Responsive User Registration Page in ASP.NET using Bootstrap and SQL Server Database kzbin.info/www/bejne/fJ_XpquXm6yLba8
@pradnyakasar614
@pradnyakasar614 Жыл бұрын
System.Data.SqlClient.SqlException: 'Login failed. The login is from an untrusted domain and cannot be used with Windows authentication.'..how to resolve this error?
@jeevendra_171
@jeevendra_171 Жыл бұрын
Hello sir i need your help. One company given me task for tha interview time so mujhe apki help chahiye task complete krne me
@sahilrohilla3409
@sahilrohilla3409 2 жыл бұрын
Sir apne MVC use kiya hai jquery. Idont know what is jQuery aand.mvc
@shaharyarsahil9878
@shaharyarsahil9878 3 жыл бұрын
sir agr empty project na lain or web form phr kasy add krain gay visual studio ma
@pradeeppugazh6498
@pradeeppugazh6498 3 жыл бұрын
Sir i create form. But i couldn't connect to form. In sql server
@anushav9655
@anushav9655 4 жыл бұрын
Tqq sir
@divyababu3186
@divyababu3186 3 жыл бұрын
Super sir clear explanation tqq
@nakulanand2725
@nakulanand2725 2 жыл бұрын
Unrecognized escape error are shown?
@jamunadevi7635
@jamunadevi7635 2 жыл бұрын
Hi sir ..is it possible to display saving data in the datagridview..please guide
@RunCodes
@RunCodes 2 жыл бұрын
ASP.NET and SQL Server- How to Display Data on or Bind/Populate GridView? kzbin.info/www/bejne/fJKxnYZnjpujfZY here you go!
@sadanandasherigara3309
@sadanandasherigara3309 3 жыл бұрын
{"An explicit value for the identity column in table 'UserTable' can only be specified when a column list is used and IDENTITY_INSERT is ON."} protected void RadioButton2_CheckedChanged(object sender, EventArgs e) { gender = "female"; } protected void RadioButton3_CheckedChanged(object sender, EventArgs e) { gender = "other"; } protected void btnRegister_Click(object sender, EventArgs e) { string cs = ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString; SqlConnection con = new SqlConnection(cs); string query = "insert into UserTable values('" + txtName.Text + "','" + txtAddress.Text + "','" + gender + "','" + txtPhone.Text + "', '"+txtEmail.Text+"' , '" +txtUserid.Text + "','" + txtPassword.Text + "')"; SqlCommand cmd = new SqlCommand(query, con); con.Open(); int Result = cmd.ExecuteNonQuery(); con.Close(); if (Result >= 1) { Response.Write("User Registered"); } else { Response.Write("User Not Registered"); } }
@RunCodes
@RunCodes 3 жыл бұрын
Contact us on facebook!
@aishukishi8460
@aishukishi8460 2 жыл бұрын
Using validation in form the button is no need to validate it should do only delete the content. Why property should be able to it
@hameesahmed2118
@hameesahmed2118 4 жыл бұрын
Awesome
@pinkysingh9761
@pinkysingh9761 2 жыл бұрын
I am getting stuck at database connection ..Can anybody help how to connect database with .Net..Seen this video and prepared same form..But getting stuck while connecting database
@RunCodes
@RunCodes 2 жыл бұрын
What’s the problem? We showed how to connect database also.
@pinkysingh9761
@pinkysingh9761 2 жыл бұрын
@@RunCodes post adding connection, IN server explorer under Data connection the USERREGISTRAION.DBO IS NOT showing..Due to which not able to connect
@RunCodes
@RunCodes 2 жыл бұрын
You have to add your server first, watch video without skipping we showed everything!
@salmaamrin2129
@salmaamrin2129 Жыл бұрын
Error showing in open. Con()
@yogeshkashid7327
@yogeshkashid7327 5 жыл бұрын
How to connect login and registration tables with each other?
@RunCodes
@RunCodes 5 жыл бұрын
Create same database and watch this video kzbin.info/www/bejne/Y3mrqaF_o8udi9k
@ankitgurav9980
@ankitgurav9980 3 жыл бұрын
Sir how to show that table dada to particular page
@RunCodes
@RunCodes 3 жыл бұрын
You have to use state management in asp!
@jorgedelacruz6612
@jorgedelacruz6612 2 жыл бұрын
I have messege to your Facebook page thank you
@RunCodes
@RunCodes 2 жыл бұрын
Email us! We don’t currently use facebook!
@jorgedelacruz6612
@jorgedelacruz6612 2 жыл бұрын
@@RunCodes where is your email? Thank you
@chrissrodrigues7353
@chrissrodrigues7353 2 жыл бұрын
Can u share the cod on comment
@RunCodes
@RunCodes 2 жыл бұрын
Goto our website
@AbrarNiazi-lj2dy
@AbrarNiazi-lj2dy 4 ай бұрын
Gender male jawa brather.
🩷🩵VS👿
00:38
ISSEI / いっせい
Рет қаралды 26 МЛН
Please Help Barry Choose His Real Son
00:23
Garri Creative
Рет қаралды 23 МЛН
Unveiling my winning secret to defeating Maxim!😎| Free Fire Official
00:14
Garena Free Fire Global
Рет қаралды 9 МЛН
C# Asp.Net - User Registration Or Sign Up With SQL Server
33:22
CodAffection
Рет қаралды 200 М.
How to create a registration form using asp.net c# with SQL Database | Part 1
24:09
🩷🩵VS👿
00:38
ISSEI / いっせい
Рет қаралды 26 МЛН