Aspx code: <%@ Page Title=”About” Language=”C#” MasterPageFile=”~/Site.Master” AutoEventWireup=”true” CodeBehind=”About.aspx.cs” Inherits=”json.About” %> <asp:Content ID=”BodyContent” ContentPlaceHolderID=”MainContent” runat=”server”> <asp:UpdatePanel ID=”UpdatePanel1″ runat=”server”> <ContentTemplate> <table>…
DOTNET:LOGIN CODE USING C#
Add ConnectionString in web.config as follows: <connectionStrings> <add name=”DefaultConnection” connectionString=”Data Source=.;Initial Catalog=Database name;Integrated Security=True;” providerName=”System.Data.SqlClient” /> </connectionStrings> Declare connection…
DOTNET:INSERTING THE TEXTBOX VALUES INTO DATABASE ON BUTTONCLICK
protected void b1_Click(object sender, EventArgs e) { con.Open(); SqlCommand cmd = con.CreateCommand(); cmd.CommandType = CommandType.Text; cmd.CommandText = “Insert into Products(seller_id,product_name,product_desc,product_price,product_images)…
ANDROID:INTERFACING BLUETOOTH IN ANDROID
This program is to control the Image View from Bluetooth Hardware(HC-05) and send data from android device.. activity_main.xml: <?xml version=”1.0″…
Protected: HAPPY BIRTHDAY PRAVEEN SIR
There is no excerpt because this is a protected post.
ANDROID:GETTING GPS LATITUDE AND LONGITUDE VALUES THROUGH THINGSPEAK AND UPDATING THE LOCATION IN MAP
Here we will have two activities as MainActivity and GPS activity. Main activity includes two textviews and two buttons.On clicking…
ANDROID:SENDING DATA FROM ANDROID TO THINGSPEAK
This is the code to send data from Android device to Thinspeak server.I used a Textview,EditText and Button in this…
CONFIGURING THE WEBSITE FROM SCRATCH PART 8-SETTING UP YOUR LOCALHOST
Step 1:Inorder to setup your localhost,first you need to install Xampp from here. Step 2:Now copy the website files in…
CONFIGURING THE WEBSITE FROM SCRATCH PART 9-CONTROLLING FROM REMOTE SERVER(FTP Access).
Hello,In this post let’s see how to control and access our website from Remote location using FTP access. Step 1:We…
ROBOTICS:HOW TO MAKE OBSTACLE AVOIDANCE ROBOT?
Hello,In this post let us learn how to make Obstacle Avoidance Robot . Components required: ARDUINO UNO*1 DC 5V BO…