Posts

Showing posts from December, 2018

Calculator WebService

Image
Calculator WebService Consume in yourApplication Steps : New Project- Add Webservice(asmx) name-  CalculatorWebservice Adding Methods or Function Code ------------------------------- CalculatorWebservice.cs ------------------------------- using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Services; /// <summary> /// Summary description for CalculatorWebService /// </summary> [WebService(Namespace = "http://tempuri.org/")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] // To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line.  // [System.Web.Script.Services.ScriptService] public class CalculatorWebService : System.Web.Services.WebService {     public CalculatorWebService()     {         //Uncomment the following line if using designed components  ...

Forms With Uploading Images

Forms

Creation of Two TextBox in a Single Row

How to Create Two TextBox in a Single-row ?  Please find below code to (Using Bootstrap) __________ ASPX Code __________ <%@ Page Language="C#" AutoEventWireup="true" CodeFile="twworows.aspx.cs" Inherits="twworows" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server">     <title>Two Rows</title>     <meta charset="utf-8" />     <meta name="viewport" content="width=device-width, initial-scale=1" />     <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" />     <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>     <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>     <script src="https://maxc...

Add Social Links in Website Using BootStrap

Add Social Links in Website Using Bootstrap ____________ ASPX Code ____________ <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Link.aspx.cs" Inherits="Links_Portal.Link" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server">     <title>Links</title>     <link rel="stylesheet" href="StyleSheet1.css" />     <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet"          integrity="sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1" crossorigin="anonymous"/> </head> <body>     <form id="form1" runat="server">         <div>             <ul>                 <li><a href="#"><i class="fa fa-faceb...