1641327840
En este artículo, aprenderá a enviar una contraseña de un solo uso [OTP] a un número de teléfono móvil registrado mediante C # y asp.net.
Paso 1
Primero cree una página web en su Visual Studio y diseñela. El diseño se da a continuación,
<asp:Panel ID="pnl1" runat="server">
<table>
<tr>
<td>Enter Your Mobile Number:</td>
<td>
<asp:TextBox ID="txtmobileNo" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td></td>
<td>
<asp:Button ID="btnsendOtp" runat="server" Text="Send OTP" OnClick="btnsendOtp_Click" />
</td>
</tr>
</table>
</asp:Panel>
<asp:Panel ID="pnl2" runat="server" Visible="false">
<table>
<tr>
<td>Enter Your OTP:</td>
<td>
<asp:TextBox ID="txtverifyMobileNO" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td></td>
<td>
<asp:Button ID="btnverify" runat="server" Text="Verify" OnClick="btnverify_Click" />
</td>
</tr>
</table>
</asp:Panel>
Paso 2
Agregue el espacio de nombres debajo en la página .cs,
using System.Data.SqlClient;
using System.Data;
using System.Net;
using System.Web.ClientServices;
using System.Collections.Specialized;
using System.Configuration;
Paso 3
Para enviar OTP necesita la clave API. Registre sus datos en el enlace de abajo para API KEY y obtenga 10 SMS gratis.
Etapa 4
Después de registrarse correctamente, vaya a la opción de configuración y haga clic en API Key para generar la clave API
Paso 5
Haga clic en crear clave API y no es necesario ingresar la dirección IP y las notas, simplemente guárdelo.
Paso 6
Escriba el siguiente código en btnOtp_click
protected void btnsendOtp_Click(object sender, EventArgs e) {
pnl1.Visible = false;
pnl2.Visible = true;
Random random = new Random();
int value = random.Next(1001, 9999);
string destinationaddress = "+91" + txtmobileNo.Text;
string message = "Your OTP is " + value + "(Send by R.R.Research and development founder is Ramesh Chandra)";
string message1 = HttpUtility.UrlEncode(message);
using(var wb = new WebClient()) {
byte[] response = wb.UploadValues("https://api.textlocal.in/send/", new NameValueCollection() {
{
"apikey",
"here is enter your API Key"
}, {
"numbers",
destinationaddress
}, {
"message",
message1
}, {
"sender",
"TXTLCL"
}
});
string result = System.Text.Encoding.UTF8.GetString(response);
Session["OTP"] = value;
}
}
Paso 6
Verifique su OTP. Escriba el siguiente código en el botón de verificación.
protected void btnverify_Click(object sender, EventArgs e) {
if (txtverifyMobileNO.Text == Session["OTP"].ToString()) {
pnl2.Visible = false;
ScriptManager.RegisterStartupScript(this, typeof(string), "Message", "confirm('Your Mobilenumber has been verify sccessfully.');", true);
} else {
ScriptManager.RegisterStartupScript(this, typeof(string), "Message", "confirm('Your OTP is not correct please enter correct OTP');", true);
pnl2.Visible = true;
}
}
Paso 7
Ahora ejecuta el proyecto.
Producción
Paso 8
Después de ingresar el número de teléfono móvil y hacer clic en enviar OTP, el primer panel será falso y el segundo panel será verdadero.
Paso 9
Ingrese OTP y haga clic en el botón verificar, obtendrá el siguiente mensaje.
"Su número de teléfono móvil ha sido verificado correctamente".
1641327840
En este artículo, aprenderá a enviar una contraseña de un solo uso [OTP] a un número de teléfono móvil registrado mediante C # y asp.net.
Paso 1
Primero cree una página web en su Visual Studio y diseñela. El diseño se da a continuación,
<asp:Panel ID="pnl1" runat="server">
<table>
<tr>
<td>Enter Your Mobile Number:</td>
<td>
<asp:TextBox ID="txtmobileNo" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td></td>
<td>
<asp:Button ID="btnsendOtp" runat="server" Text="Send OTP" OnClick="btnsendOtp_Click" />
</td>
</tr>
</table>
</asp:Panel>
<asp:Panel ID="pnl2" runat="server" Visible="false">
<table>
<tr>
<td>Enter Your OTP:</td>
<td>
<asp:TextBox ID="txtverifyMobileNO" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td></td>
<td>
<asp:Button ID="btnverify" runat="server" Text="Verify" OnClick="btnverify_Click" />
</td>
</tr>
</table>
</asp:Panel>
Paso 2
Agregue el espacio de nombres debajo en la página .cs,
using System.Data.SqlClient;
using System.Data;
using System.Net;
using System.Web.ClientServices;
using System.Collections.Specialized;
using System.Configuration;
Paso 3
Para enviar OTP necesita la clave API. Registre sus datos en el enlace de abajo para API KEY y obtenga 10 SMS gratis.
Etapa 4
Después de registrarse correctamente, vaya a la opción de configuración y haga clic en API Key para generar la clave API
Paso 5
Haga clic en crear clave API y no es necesario ingresar la dirección IP y las notas, simplemente guárdelo.
Paso 6
Escriba el siguiente código en btnOtp_click
protected void btnsendOtp_Click(object sender, EventArgs e) {
pnl1.Visible = false;
pnl2.Visible = true;
Random random = new Random();
int value = random.Next(1001, 9999);
string destinationaddress = "+91" + txtmobileNo.Text;
string message = "Your OTP is " + value + "(Send by R.R.Research and development founder is Ramesh Chandra)";
string message1 = HttpUtility.UrlEncode(message);
using(var wb = new WebClient()) {
byte[] response = wb.UploadValues("https://api.textlocal.in/send/", new NameValueCollection() {
{
"apikey",
"here is enter your API Key"
}, {
"numbers",
destinationaddress
}, {
"message",
message1
}, {
"sender",
"TXTLCL"
}
});
string result = System.Text.Encoding.UTF8.GetString(response);
Session["OTP"] = value;
}
}
Paso 6
Verifique su OTP. Escriba el siguiente código en el botón de verificación.
protected void btnverify_Click(object sender, EventArgs e) {
if (txtverifyMobileNO.Text == Session["OTP"].ToString()) {
pnl2.Visible = false;
ScriptManager.RegisterStartupScript(this, typeof(string), "Message", "confirm('Your Mobilenumber has been verify sccessfully.');", true);
} else {
ScriptManager.RegisterStartupScript(this, typeof(string), "Message", "confirm('Your OTP is not correct please enter correct OTP');", true);
pnl2.Visible = true;
}
}
Paso 7
Ahora ejecuta el proyecto.
Producción
Paso 8
Después de ingresar el número de teléfono móvil y hacer clic en enviar OTP, el primer panel será falso y el segundo panel será verdadero.
Paso 9
Ingrese OTP y haga clic en el botón verificar, obtendrá el siguiente mensaje.
"Su número de teléfono móvil ha sido verificado correctamente".
1624240146
C and C++ are the most powerful programming language in the world. Most of the super fast and complex libraries and algorithms are written in C or C++. Most powerful Kernel programs are also written in C. So, there is no way to skip it.
In programming competitions, most programmers prefer to write code in C or C++. Tourist is considered the worlds top programming contestant of all ages who write code in C++.
During programming competitions, programmers prefer to use a lightweight editor to focus on coding and algorithm designing. Vim, Sublime Text, and Notepad++ are the most common editors for us. Apart from the competition, many software developers and professionals love to use Sublime Text just because of its flexibility.
I have discussed the steps we need to complete in this blog post before running a C/C++ code in Sublime Text. We will take the inputs from an input file and print outputs to an output file without using freopen
file related functions in C/C++.
#cpp #c #c-programming #sublimetext #c++ #c/c++
1597937354
If you are familiar with C/C++then you must have come across some unusual things and if you haven’t, then you are about to. The below codes are checked twice before adding, so feel free to share this article with your friends. The following displays some of the issues:
The below code generates no error since a print function can take any number of inputs but creates a mismatch with the variables. The print function is used to display characters, strings, integers, float, octal, and hexadecimal values onto the output screen. The format specifier is used to display the value of a variable.
A signed integer is a 32-bit datum that encodes an integer in the range [-2147483648 to 2147483647]. An unsigned integer is a 32-bit datum that encodes a non-negative integer in the range [0 to 4294967295]. The signed integer is represented in twos-complement notation. In the below code the signed integer will be converted to the maximum unsigned integer then compared with the unsigned integer.
#problems-with-c #dicey-issues-in-c #c-programming #c++ #c #cplusplus
1589816580
In this article, we’ll take a look at using the isdigit() function in C/C++. This is a very simple way to check if any value is a digit or not. Let’s look at how to use this function, using some simple examples.
#c programming #c++ #c #c#
1590587580
In this Video We are going to see how to use Loops in C++. We will see How to use For, While, and Do While Loops in C++.
C++ is general purpose, compiled, object-oriented programming language and its concepts served as the basis for several other languages such as Java, Python, Ruby, Perl etc.
#c #c# #c++ #programming-c