Posts

Showing posts with the label C#

Upload Multiple Image with thumbline In Asp.net

Gallary.aspx < div class ="control-group">   < label class ="control-label"> Select Image: </ label >    < div class ="controls">     < asp : FileUpload ID ="fuslider" Multiple ="Multiple" runat ="server" CssClass ="styled" />  </ div > </ div > < div class ="form-actions">    < asp : Button ID ="btnsubmit" Text ="Submit" runat ="server" CssClass ="btn btn-primary"      ValidationGroup ="cat" OnClick ="btnsubmit_Click" />     < asp : Label ID ="lblmsg" runat ="server" CssClass ="help-block"></ asp : Label > </ div > Gallary.aspx.cs if (fuslider.HasFile)  {    for ( int i = 0; i < Request.Files.Count; i++)     {        HttpPostedFile PostedFile = Request.Files[i];        string

Cascading Dropdownlist using webservices

Here is Html   < form id ="form1" runat ="server">     < asp : ToolkitScriptManager ID ="ToolkitScriptManager1" runat ="server">     </ asp : ToolkitScriptManager >     < div >         < table style =" width : 100%;">             < tr >                 < td colspan ="3" class ="style2">                     < h1 align ="center">                         Cascading Dropdown List Style                     </ h1 >                 </ td >             </ tr >             < tr >                 < td class ="style1">                     Selecte Country &nbsp; :-                 </ td >                 < td >                     < asp : DropDownList ID ="DropDownList1" runat ="server">                     </ asp : DropDownList >