<%@ page language="C#" autoeventwireup="true" inherits="jimtrade_com_inquiry1, App_Web_inquiry.aspx.e49e5be2" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
<%@ Register Assembly="MSCaptcha" Namespace="MSCaptcha" TagPrefix="cc2" %>

<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>Tell us your Buy Requirement | JimTrade.com</title>
<meta charset='UTF-8'>
<META name="Description" content=" ">
<META name="Keywords" content=" ">
<link rel="shortcut icon" href="https://www.jimtrade.com/images_new/jimtrade.ico" type="image/x-icon">

<link rel='stylesheet' type='text/css' href='https://www.jimtrade.com/jimAssets/css/style.css'>
<link rel='stylesheet' type='text/css' href='https://www.jimtrade.com/jimAssets/css/main.css'>
<link rel='stylesheet' type='text/css' href='https://www.jimtrade.com/jimAssets/css/swiper.css'>
<link rel='stylesheet' type='text/css' href='https://www.jimtrade.com/jimAssets/font-awesome/css/font-awesome.min.css'>
<script type='text/javascript' src='https://www.jimtrade.com/jimAssets/js/jquery.min.js'></script>
<script type='text/javascript' src='https://www.jimtrade.com/jimAssets/js/main.js'></script>
<script type='text/javascript' src='https://www.jimtrade.com/jimAssets/js/swiper.min.js'></script>
<script type='text/javascript' src='https://www.jimtrade.com/jimAssets/js/bootstrap.min.js'></script>
<!-- responsive assets -->
<link rel='shortcut icon' href='https://www.jimtrade.com/images_new/jimtrade.ico' type='image/x-icon'>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' href='https://www.jimtrade.com/jimAssets/assets/responsiveinner.css'>
<link rel='stylesheet' type='text/css' href='https://www.jimtrade.com/jimAssets/assets/responsivefooter.css'>

<!-- //responsive assets top -->

<script type="text/javascript" language="javascript">
    function getflag() {

        var flag = document.getElementById('cbocountry').value;
        if (flag != '') {
            document.getElementById('imageflag').src = "http://images.jimtrade.com/country/" + flag + ".jpg";
            document.getElementById('imageflag').style.display = "block";
        }
        else {
            document.getElementById('imageflag').style.display = "none";
        }
    }

    function disableValidator() {

        if (document.forms["frminquiry"].txtdetails.value == "") {
            alert("Describe your requirement in detail.");
            document.forms["frminquiry"].txtdetails.focus();
            return false;
        }
        else {

            showpopup();
            return false;
        }
    }

    function disableValidator2() {
        if (document.forms["frminquiry"].txtdetails.value == "") {
            alert("Describe your requirement in detail.");
            document.forms["frminquiry"].txtdetails.focus();
            return false;
        }
        else {
            return true;
        }
    }
    function showpopup() {
        debugger;
        $find('ModalPopupExtender3').show();
        return false;
    }

    function activateTab(pageId) {

        var tabCtrl = document.getElementById('tabCtrl');
        var pageToActivate = document.getElementById(pageId);
        for (var i = 0; i < tabCtrl.childNodes.length; i++) {
            var node = tabCtrl.childNodes[i];
            if (node.nodeType == 1) { /* Element */
                node.style.display = (node == pageToActivate) ? 'block' : 'none';
            }
        }
        if (pageId == 'page1') {
            $("#already").removeClass("tabs").addClass("activetabs");
            $("#register").removeClass("activetabs").addClass("tabs");
        }
        if (pageId == 'page2') {
            $("#register").removeClass("tabs").addClass("activetabs");
            $("#already").removeClass("activetabs").addClass("tabs");
        }
    }

    function inquirysuccessdone1() {

        document.getElementById("inquiry").style.display = "none"
        document.getElementById("inquirysuccess").style.display = "Block"
    }

    function validateemail() {

        var email;
        var pwd;
        var msgstr;
        email = document.getElementById('txtloginid').value;
        pwd = document.getElementById('txtpassword').value;

        $.ajax({
            type: "POST",
            url: "trade_inquiry.aspx/membervalidate",
            data: "{'emailid':'" + email + "','pwd':'" + pwd + "'}",
            contentType: "application/json; charset=utf-8",
            dataType: "json",
            success: function (msg) {

                msgstr = msg.d;
            }
        });

        if (msgstr == 'False') {
            document.getElementById("invalid").style.display = "Block"
            return false;
        }
        else {

            document.getElementById("invalid").style.display = "None"
            return true;
        }

    }

    function checkemail() {

        var valid = Page_ClientValidate('a');
        if (valid == true) {
            var email;
            var pwd;
            email = document.getElementById('txtloginid').value;
            pwd = document.getElementById('txtpassword').value;

            var msgstr = '';

            $.ajax({
                type: "POST",
                url: "trade_inquiry.aspx/membervalidate",
                data: "{'emailid':'" + email + "','pwd':'" + pwd + "'}",
                contentType: "application/json; charset=utf-8",
                dataType: "json",
                async: false,
                success: function (msg) {

                    msgstr = msg.d;

                }
            });

            if (msgstr == "False") {
                document.getElementById("invalid").style.display = "Block"
                return false;
            }
            else {
                document.getElementById("invalid").style.display = "None"
                return true;
            }
        }
    }

    function emailalready() {

        var valid = Page_ClientValidate('b');
        if (valid == true) {
            var email;
            var msgstr = '';
            email = document.getElementById('txtemailid').value;
            $.ajax({
                type: "POST",
                url: "trade_inquiry.aspx/Alreadymember",
                data: "{'emailid':'" + email + "'}",
                contentType: "application/json; charset=utf-8",
                dataType: "json",
                async: false,
                success: function (msg) {

                    msgstr = msg.d;

                }
            });

            if (msgstr == "False") {
                document.getElementById("loginalready").style.display = "Block";
                return false;
            }
            else {
                document.getElementById("loginalready").style.display = "None";
                return true;
            }
        }
    }
</script>

<style type="text/css">
     
div.ps1 { font-weight: bold; color: #000000; background-color:red; border: 1px; width:100px; border-style: solid; border-color: black; text-align: center;float:left }

div.ps2 { font-weight: bold; color: #000000; background-color:orange; border: 1px; width:100px; border-style: solid; border-color: black; text-align: center;float:left }

div.ps3 { font-weight: bold; color: #000000; background-color:yellow; border: 1px; width:100px; border-style: solid; border-color: black; text-align: center;float:left }

div.ps4 { font-weight: bold; color: #FFFFFF; background-color:blue; border: 1px; width:100px; border-style: solid; border-color: black; text-align: center;float:left }

div.ps5 { font-weight: bold; color: #FFFFFF; background-color:green; border: 1px; width:100px; border-style: solid; border-style: solid; border-color: black; text-align: center }

.tabs{width:100%;float:left;text-align:center;color:#0c4da2;font-weight:bold;background-color:#F2F0F0;font-style:normal;text-decoration:none;display:block;position:relative;padding:8px;outline:none;border-top:2px solid #F2F0F0;border-left: 2px solid #F2F0F0;border-right:2px solid #F2F0F0;}
.activetabs{width:100%;float:left;text-align:center;color:#0c4da2;font-weight:bold;background-color:#ffffff;font-style:normal;text-decoration:none;display:block;position:relative;padding:8px;outline:none;border-top:2px solid #F2F0F0;border-left: 2px solid #F2F0F0;border-right:2px solid #F2F0F0;}
    
    
    
	.ModalPopupBG
{
   background-color:Gray;
    filter:alpha(opacity=50);
    opacity:0.7;
}
 .modalPopup 
{
    background-color:#ffffff; 
    border-width:1px; 
    border-style:solid; 
    border-color:#D6D6D6; 
    width:500px; 
}

 .modalPopup1 
{
    background-color:#ffffff; 
    border-width:1px; 
    border-style:solid; 
    border-color:#D6D6D6; 
    width:600px; 
}

.arrow-left {
	width: 0; 
	height: 0; 
	border-top: 10px solid transparent ;
	border-bottom: 10px solid transparent; 
	border-right:10px solid gray; 
   
}

 .btnfree
      { border: 1px solid #00a2e5;
       background: #00a2e5;
       color: #fff;
      margin-left:10px;
       border-radius: 4px;
       padding: 3px 11px;
       font-weight: bold;
       font-size: 13px;
       }



.btnfree:hover
      { border: 1px solid #1b3981;
      
       background: #1b3981;
      }
      
      @media screen and (min-width:0px) and (max-width: 700px) {  
      
      
       .modalPopup 
{
    background-color:#ffffff; 
    border-width:1px; 
    border-style:solid; 
    border-color:#D6D6D6; 
    width:96%; 
}

 .modalPopup1 
{
    background-color:#ffffff; 
    border-width:1px; 
    border-style:solid; 
    border-color:#D6D6D6; 
    width:98%; 
}

}


</style>

</head>
<body>
<script type="text/javascript" language="javascript">
    //  function openpopup(popurl)
    //        {
    //	        var winpops=window.open(popurl,"","width=450,height=300,scrollbars=no,resizable")
    //        }
    function StartTimer() {
        document.getElementById("errortd").style.display = "block";
        $("#errortd").fadeIn();
    }
    </script>



<section class='container'>
<div class='header'>
<div class='logo-part'>
<a href='http://www.jimtrade.com'><img src='https://www.jimtrade.com/jimAssets/images/logo_new.png' alt='www.jimtrade.com' title='jimtrade.com - India Business Directory, Indian Suppliers Directory, Indian Products & Services Directory'/></a>
</div>
 <span class='clickmenu' style='float:right;'  title='Click to Expand'>Menu <i class='fa fa-bars' aria-hidden='true'></i></span>
 <div id='myDIV'>
<div class='menu-part1'>
 <div class='login-menu'>
<span><a href='javascript:Post_inquiry()' class='inquire' id='postinquiry' title='Get Quotations'>Post Inquiry</a></span>
<ul>
<!-- <li>For Buyers<img src='https://www.jimtrade.com/jimAssets/images/Arrow.png'/>&nbsp;
<ul>
<li><a href='https://products.jimtrade.com/'>Products Directory</a></li>
<li><a href='https://directory.jimtrade.com/'>Suppliers Directory</a></li> 
<li><a href='https://directory.jimtrade.com/indian_services/'>Services Directory</a></li>
<li><a href='https://tradefair.jimtrade.com/'>Trade Fairs</a></li>
</ul>
 </li>
 <li>For Suppliers<img src='https://www.jimtrade.com/jimAssets/images/Arrow.png'/>&nbsp;
<ul>
<li><a href='http://suppliers.jimtrade.com/'>By Category</a></li>
<li><a href='javascript:Post_inquiry()'>Get Quotations</a></li>
</ul>
</li>-->
<font id='logindiv'></font>
<script type='text/javascript' src='https://www.jimtrade.com/login/responsive_header.js'></script>
</ul>
</div>
</div>
</div>
<div class='menu-part2'>
<div class='product-banner'>
<form id='searchForm' method='post' action='' onsubmit='validate(this);'>
<select id='selsearchin_id'>
<option value='Products'>Products</option>
<option value='Services'>Services</option>
<!--<option value='Suppliers'>Suppliers By name</option>
<option value='Trade'>Trade Show</option>-->	
</select>
<input type='text' id='txtSearch' placeholder='Enter a Keyword to Search'>
<button class='product-search2' type='submit'>Search</button>
</form>
</div>
</div>
 </div>
</section>
<section class='product-menu'>
<div class='container'>
<div class='menu-bg'>
<a href='https://products.jimtrade.com/'><span>Indian Products</span></a>

<a href='https://directory.jimtrade.com/'><span>Indian Suppliers</span></a>
<!--
<a href='https://directory.jimtrade.com/indian_services/'><span>Services Directory</span></a>-->

<a href='https://tradefair.jimtrade.com/'><span>Trade Fairs</span></a>

 </div>
<div class='bredcamp'>
<ul>
<a href='http://www.jimtrade.com'><li>Home</li></a>&nbsp;>
<a><li class='active'> Business Enquiry</li></a>
</ul>
</div>
</div>
<div class='adds-section text-center'><center>
<script async src='//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js'></script>
<!-- JimTrade_Responsive_1 -->
<%--<ins class='adsbygoogle'
style = 'max-width:728px;display:block'
Data-ad-client='ca-pub-8040656654961143'
Data-ad-slot='9940968745'
data-ad-format='auto'></ins>
<script>
    (adsbygoogle = window.adsbygoogle || []).push({});
</script>--%>
</center></div>
</section>

<section class="container supplier-details">
  
  <div class="supplier-main-body">
    <div class="supplier-details-part1">
      <div class="supplier-details-head">
        <h4 class="text-center">Tell us your Buy Requirement</h4>
      </div>
      <div class="product-listing-description">

    <form id="frminquiry" runat="server">
    
  <asp:ScriptManager id="ScriptManager1" runat="server"  EnablePageMethods="true"  >
</asp:ScriptManager>


<table width="100%" align="center" cellpadding="0" cellspacing="0" border="0">
	<tr><td colspan="3" height="15px"></td></tr>
   
	<tr>


		<td width="22%" align="left">To</td>
		
		<td width="4%" align="center">:</td>
		
		<td width="74%" align="left"><b> <asp:Label ID="Label1" runat="server"  style="width:90%;" ><%= str_suppName%> </asp:Label></b> </td>
			          
	</tr>
   
	<tr>
   <td colspan="3" height="15px"><asp:HiddenField ID="SuppId" runat="server" /></td></tr>
	
	<tr><td colspan="3" height="15px"></td></tr>
	<tr>
		<td width="22%" align="left" valign="top">Describe your requirement</td>
		
		<td width="4%" align="center" valign="top">:</td>
		
		<td width="74%" align="left"><asp:TextBox ID="txtdetails" TextMode="MultiLine" Rows="5" Columns="45" runat="server"
                                     Width="90%" Height="150px" placeholder="Provide specific details about :&nbsp;'Product/Service required','Quality','Standard','Size' etc..">
                                     </asp:TextBox>
       </td>
		
	</tr>
	<tr><td colspan="3" height="15px"></td></tr>
    <tr>
		<td width="22%" align="left" valign="top"></td>
		
		<td width="4%" align="center" valign="top"></td>
		<style>
		input[type="checkbox"]{display: none;}
		</style>
       <%-- style is only for below chk box--%>
		<td width="74%" align="left">
           <b><asp:CheckBox ID="chkBestResponse" runat="server" Text=" Get best response to your inquiry"/></b>&nbsp;<img src='http://images.jimtrade.com/questionmark.jpg' border='0' title='JimTrade will search its exhaustive database to identify the most appropriate suppliers matching your inquires and forward it to them.' />
            </td>                                                                    
           </tr>
   <tr>
		<td width="22%" align="left" valign="top"></td>
		
		<td width="4%" align="center" valign="top"></td>
		
		<td width="74%" align="left">
           <asp:CheckBox ID="chkcc" runat="server" Text=" Send me a confirmation of this inquiry" />
         </td>
    </tr>
	
     <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">

    <tr><td colspan="3" height="15px"></td></tr>

        <%if (Request.Cookies["Login_sesMemberId"] == null)
           {%>
 <%}
           else
           { %>
     <tr>
                      <td style="width:22%;"></td>
                         
                      <td style="width: 4%;"></td>
                      <td style="width: 74%;">
                          <div style='float:left'> <asp:TextBox  ID="strCAPTCHA" runat="server" Height='30' EnableViewState="false"  MaxLength = "5"  Width="140px"  Font-Size="12"></asp:TextBox></div>
                          <div style='float:left'>
                                <cc1:TextBoxWatermarkExtender ID="TextBoxWatermarkExtender5" TargetControlID="strCAPTCHA" WatermarkText="Security Character" runat="server" ></cc1:TextBoxWatermarkExtender><cc2:CaptchaControl ID="ccsendinquiry" runat="server" CaptchaChars="0123456789" 
                                CaptchaFontWarping="Medium" CaptchaHeight="31" CaptchaLength="5" 
                              CaptchaMaxTimeout="240" CaptchaMinTimeout="5" CaptchaWidth="100" />
                          </div>&nbsp;
                          <div style='float:left'><asp:Label ID="lblmsg" runat="server" Font-Bold="true" Font-Size="9pt" ForeColor="#cc0000"> </asp:Label>
                          </div>
                       </td>
       </tr>
                  <%}%>

     <tr>
                      <td style="width:22%;"></td>
                         
                      <td style="width: 4%;"></td>
                      <td style="width: 74%;">
             <%if(Request.Cookies["Login_sesMemberId"] == null ){%>
                 <asp:Button ID="btnentireinquiry" runat="server" Text="Send Inquiry" class="btnfree" style='margin-left:0px;' 
                 OnClientClick="javascript:return disableValidator();" 
                 onclick="btnentireinquiry_Click"/>
               <%}else{%>
                <asp:Button ID="btnlogininquire" runat="server" Text="Send Inquiry" 
                 class="btnfree"  style='margin-left:0px;' 
                 OnClientClick="javascript:return disableValidator2()" 
                 onclick="btnlogininquire_Click"/>
            <%}%>

        

        </td>
        </tr>
        
         
	
	
	   
        <tr>
        <td colspan="3" width='100%' align='center'>
        <div id="inquirysuccess" style="display:block" class="heading4" align="center">
        <cc1:ModalPopupExtender ID="ModalPopupExtender3" runat="server" PopupControlID="Panel3" TargetControlID="Hiddentaget3" BackgroundCssClass="ModalPopupBG" CancelControlID="sendcancel" Y="30" >
  </cc1:ModalPopupExtender>
  <asp:Panel ID="Panel3" CssClass="modalPopup1" runat="server" Style="display: none;
                                vertical-align: bottom; text-align: center;">
     <table  width='100%'>
        <tr>
                                  <td width='100%' class="fnttopbartabs" align='right' style='padding:10px;'>
                                    <asp:Button ID="sendcancel" runat="server" Text="X" OnClientClick="javascript:clientemailnone()" class="btnfree" />
                                    </td>
                                    

        </tr>
                                <tr>
      <td width="100%" nowrap>
      <ul>
        <li style="width:50%;float:left;list-style:none;margin-left: -10px;" ><a href="javascript:activateTab('page1')" class="activetabs" id='already' runat='server'>Sign in  </a></li>
        <li style="width:50%;float:left;list-style:none"><a href="javascript:activateTab('page2')" class="tabs" id='register' runat='server'>Register Now </a></li>
       </ul>
</td>
</tr>

        <tr>
        <td height='10px'></td>
        </tr>


       <tr>
        <td width='100%'>
         <div class="TabView" id="tabCtrl" style="width:100%">
          <div id="page1" style="width:100%;display:block" runat='server'>
          
          <table width="55%" align="center" cellspacing="0" cellpadding="0">
         
<tr><td height="10px" width='100%'>
<div id='invalid' style='font-family:Arial;font-size:9pt;display:none;color:red'>
Invalid Email Id & Password
</div>
<asp:RequiredFieldValidator ID="RFV_txtloginid" runat="server" ControlToValidate="txtloginid"
 ErrorMessage="Please Enter Login Id<br>" Font-Bold="true" Font-Size="9pt" ValidationGroup="a" Font-Names="Arial"  Display="dynamic" ></asp:RequiredFieldValidator>  
                                                                                                            
 <asp:RegularExpressionValidator ID="REV_txtloginid" runat="server" Font-Bold="true"
SetFocusOnError="true" Display="dynamic" Font-Size="9pt"  Font-Names="Arial" ControlToValidate="txtloginid"
ValidationExpression="^\s*\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*\s*$" ErrorMessage="Please Enter Proper EmailId<br>"
ValidationGroup="a"></asp:RegularExpressionValidator>
<asp:RequiredFieldValidator ID="RFV_txtpassword" runat="server" ControlToValidate="txtpassword"
ErrorMessage="Please Enter Password" Font-Bold="true" Font-Size="9pt" Font-Names="Arial"  Display="dynamic"   ValidationGroup="a"></asp:RequiredFieldValidator>
    
</td>
</tr>
<tr>
<td  class="fnt10" align="left"><b>Email ID</b></td>
</tr>
<tr><td height="10px"></td></tr>
<tr>

<td width="100%" align="left">
 <asp:TextBox ID="txtloginid" class="fnt10" runat="server" style="height:25px;width:95%;border-radius:5px;"  ></asp:TextBox>
 <br />
 
 </td>

</tr>
<tr><td height="10px"></td></tr>
<tr>
<td  class="fnt10" align="left"><b>Password</b></td>
</tr>
<tr><td height="10px"></td></tr>
<tr>

<td width="100%" align="left">
<asp:TextBox ID="txtpassword" runat="server" class="fnt10" TextMode="Password" style="height:25px;width:95%;border-radius:5px;"></asp:TextBox>
 <br />

 </td>


</tr>
<tr>
<td width="100%" align='left'>
<a href="https://www.jimtrade.com/password_reminder.aspx" class="fntgraylink">
Forgot Password?</a>
</td>
</tr>

<tr><td height="10px"></td></tr>
<tr>
<td  class="fnt10" align="left"><b>Enter Security Character</b></td>
</tr>
<tr><td height="10px"></td></tr>
<tr>
<td width="100%" align="left">
<div style='float:left'>
<asp:TextBox  ID="strCAPTCHA1" runat="server" Height='30' EnableViewState="false" 
 MaxLength="5"   Font-Size="12"></asp:TextBox></div>
 
  <cc1:TextBoxWatermarkExtender ID="TextBoxWatermarkExtender4" TargetControlID="strCAPTCHA1" WatermarkText="Security Character" runat="server" ></cc1:TextBoxWatermarkExtender>   
  <cc2:CaptchaControl ID="Captchalogin" runat="server" CaptchaChars="0123456789" 
  CaptchaFontWarping="Medium" CaptchaHeight="31" CaptchaLength="5" 
   CaptchaMaxTimeout="240" CaptchaMinTimeout="5" CaptchaWidth="100" />
  
</td>
</tr>
<tr><td height="10px"></td></tr>
<tr>
<td width="100%" align="left">
 <asp:Label ID="lblmsglogin" runat="server" Font-Bold="true" Font-Size="9pt" ForeColor="#cc0000"> </asp:Label>
</td>
</tr>
<tr><td height="10px"></td></tr>

<tr>
<td  class="fnt10" align="left">
    <asp:Button ID="SendInquiry" runat="server" 
          Text="Send Inquiry" 
        ValidationGroup="a" OnClientClick="javascript:return checkemail();" onclick="SendInquiry_Click" class="btnfree"  style='margin-left:0;'></asp:Button></td>
</tr>
<tr><td height="10px"  ></td></tr>
</table>

          </div>

          <div id="page2" style="display:none;width:100%" runat='server'>
    <table width="90%" align="center" cellspacing="0" cellpadding="0">
    <tr>

        <td width='100%'>
        
<table width="100%" align="center" cellspacing="0" cellpadding="0">

<tr>
<td width='100%' colspan='3'>

<div id='loginalready' style='font-family:Arial;font-size:9pt;display:none;color:red'>
This email id already registered with JimTrade,com,Please sign in and send inquiry.
</div>
</td>
</tr>
<tr><td height="10px"  ></td></tr>
<tr><td width='30%' align='right' class='fnt10'><b>Company</b></td>
<td width='5%'></td>
<td width="65%" align='left'>
<asp:TextBox ID="txtcompany" class='fnt10' runat="server" style="height:15px;width:85%;padding-left:5px;border-radius:5px;" ></asp:TextBox>
  <asp:RequiredFieldValidator ID="RequiredFieldValidator5" runat="server" ControlToValidate="txtcompany"
 ErrorMessage="<br>Please Enter Company Name" Font-Bold="true" Font-Size="9pt" Font-Names="Arial" ValidationGroup="b" Display="Dynamic"></asp:RequiredFieldValidator>    
 </td>
</tr>
<tr><td height="10px"></td></tr>
<tr><td width='30%' align='right' class='fnt10'><b>Contact Person</b></td>
<td width='5%'></td>
<td width="65%" align='left'>

<asp:TextBox ID="txtnew_memberName" class='fnt10' runat="server" style="height:15px;width:85%;padding-left:5px;border-radius:5px;" ></asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator2" runat="server" ControlToValidate="txtnew_memberName"
 ErrorMessage="<br>Please Enter Contact Person" Font-Bold="true" Font-Size="9pt" Font-Names="Arial" ValidationGroup="b" Display="Dynamic"></asp:RequiredFieldValidator>    
  </td>
</tr>
<tr><td height="10px"></td></tr>
<tr><td width='30%' align='right' class='fnt10'><b>Designation</b></td>
<td width='5%'></td>
<td width="65%" align='left'>

<asp:TextBox ID="txtdesignation" class='fnt10' runat="server" style="height:15px;width:85%;padding-left:5px;border-radius:5px;" ></asp:TextBox>

  </td>
</tr>
<tr><td height="10px"></td></tr>
<tr>

<td width='30%' align='right' class='fnt10'><b>Email Id</b></td>
<td width='5%'></td>
<td width="65%" align='left'>
 <asp:TextBox ID="txtemailid" class='fnt10' runat="server" style="height:15px;width:85%;padding-left:5px;border-radius:5px;" ></asp:TextBox>
 <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="txtemailid"
 ErrorMessage="<br>Please Enter Login Id" Font-Bold="true" Font-Size="9pt" Font-Names="Arial" ValidationGroup="b" Display="Dynamic"></asp:RequiredFieldValidator>    
<asp:RegularExpressionValidator ID="RegularExpressionValidator1" runat="server" Font-Bold="true"
SetFocusOnError="true" Display="dynamic" Font-Size="9pt" Font-Names="Arial" ControlToValidate="txtemailid"
ValidationExpression="^\s*\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*\s*$" ErrorMessage="<br>Please Enter Proper EmailId"
ValidationGroup="b"></asp:RegularExpressionValidator>
 </td>
</tr>
<tr><td height="10px"  ></td></tr>
<tr><td width='20%' align='right' class='fnt10'>&nbsp;</td>
<td width='5%'></td>
<td width="75%" align='left' class='fnt10'>
Your email will be used to sign-in to jimTrade.com 
</td></tr>
<tr><td  height="10px"></td></tr>
<tr>

<td width='20%' align='right' class='fnt10'><b>Create Password</b></td>
<td width='5%'></td>
<td width="75%" align='left'>

<asp:TextBox ID="txtnewpassword" TextMode="Password" class='fnt10' runat="server" style="height:15px;width:85%;padding-left:5px;border-radius:5px;" ></asp:TextBox>
 <asp:RequiredFieldValidator ID="RequiredFieldValidator4" runat="server" ControlToValidate="txtnewpassword"
 ErrorMessage="<br>Please Enter password" Font-Bold="true" Font-Size="9pt" Font-Names="Arial" ValidationGroup="b" Display="Dynamic"></asp:RequiredFieldValidator> 
    <asp:RegularExpressionValidator ID="RegularExpressionValidator2" ValidationExpression="^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[$@$!%*?&])[A-Za-z\d$@$!%*?&]{8,}" runat="server"  ControlToValidate="txtnewpassword" ErrorMessage="<br>Password must contain: Minimum 8 characters atleast 1 UpperCase Alphabet, 1 LowerCase Alphabet, 1 Number and 1 Special Character" Font-Bold="true" Font-Size="9pt" Font-Names="Arial" ValidationGroup="b" Display="Dynamic"></asp:RegularExpressionValidator>


    
</td>
</tr>

<tr>
<td width='100%' colspan='3'>

</td>

</tr>
<tr><td  height="10px">
 
</td></tr>
<tr><td width='20%' align='right' class='fnt10'><b>Contact No</b></td>
<td width='5%'></td>
<td width="75%" align='left'>

<asp:TextBox ID="txtContactNo" class='fnt10' runat="server" style="height:15px;width:85%;padding-left:5px;border-radius:5px;" ></asp:TextBox>
    <asp:RequiredFieldValidator ID="RequiredFieldValidator3" runat="server" ControlToValidate="txtContactNo"
 ErrorMessage="<br>Please Enter Contact No" Font-Bold="true" Font-Size="9pt" Font-Names="Arial" ValidationGroup="b" Display="Dynamic"></asp:RequiredFieldValidator>

 <asp:RegularExpressionValidator ID="revMobNo" runat="server" ErrorMessage="Invalid Mobile Number."
    ValidationExpression="^([0-9]{10})$" ControlToValidate="txtContactNo" ValidationGroup="b"
    ForeColor="Red" Display="Dynamic"></asp:RegularExpressionValidator>

   </td>
   </tr>
<tr><td  height="10px"></td></tr>
<tr><td width='30%' align='right' class='fnt10'><b>Address</b></td>
<td width='5%'></td>
<td width="65%" align='left'>
<asp:TextBox ID="txtaddress" class='fnt10' runat="server" style="height:15px;width:85%;padding-left:5px;border-radius:5px;" ></asp:TextBox>
  <asp:RequiredFieldValidator ID="RequiredFieldValidator6" runat="server" ControlToValidate="txtaddress"
 ErrorMessage="<br>Please Enter Address" Font-Bold="true" Font-Size="9pt" Font-Names="Arial" ValidationGroup="b" Display="Dynamic"></asp:RequiredFieldValidator>    
  </td>
</tr>
<tr><td height="10px"></td></tr>
<tr>

<td width='20%' align='right' class='fnt10'><b>Country</b></td>
<td width='5%'></td>
<td width="70%" align='left' class='fnt10'>
<div style="display:table;width:90%">
<div style="display:table-row" class="fnt10">
   <div style="float: left; vertical-align: middle;display:table-cell;width:90%">
<asp:DropDownList ID="cbocountry"  onchange="javascript:getflag();"  runat="server" AppendDataBoundItems="True" CssClass="border fnt10" ValidationGroup="b" style="height:20px;width:100%;border-radius:5px">
</asp:DropDownList>
</div>

  <div style="float: left; vertical-align: middle;display:table-cell;width:10%">
<img id="imageflag" src="" width="20" height="13" alt="" style="display: none;vertical-align:middle"  />
   </div>
   </div>
</div>
<asp:RequiredFieldValidator ID="RFV_cbocountry" runat="server" ControlToValidate="cbocountry" InitialValue=""
       ErrorMessage="<br>Please select country" Font-Bold="true" Font-Size="9pt" Font-Names="Arial" ValidationGroup="b" Display="Dynamic"></asp:RequiredFieldValidator>
	</td>
    
    </tr>
	<tr><td height="10px"></td></tr>
     <tr>
<td width='20%' align='right' class='fnt10'><b>Security Character</b></td>
<td width='5%'></td>
<td width="70%" align='left' class='fnt10'>
<div style='float:left'><asp:TextBox  ID="strCAPTCHAjoin" runat="server" Height='30' EnableViewState="false" 
 MaxLength="5"   Font-Size="12"></asp:TextBox> <cc1:TextBoxWatermarkExtender ID="TextBoxWatermarkExtender1" TargetControlID="strCAPTCHAjoin" WatermarkText="Security Character" runat="server" ></cc1:TextBoxWatermarkExtender></div>
 <div >
 <cc2:CaptchaControl ID="captchjoin" runat="server" CaptchaChars="0123456789" 
  CaptchaFontWarping="Medium" CaptchaHeight="31" CaptchaLength="5" 
   CaptchaMaxTimeout="240" CaptchaMinTimeout="5" CaptchaWidth="100" /></div>
 
</td>
</tr>
<tr>
<td height="10px" colspan="3">
 <asp:Label ID="lblcaptchajoin" runat="server" Font-Bold="true" Font-Size="9pt" ForeColor="#cc0000" Font-Names="arial"> </asp:Label>
</td>
</tr>
<tr><td height="10px"></td></tr>

<tr>
<td width="100%" colspan='3'>
<table width="100%" cellspacing="0" cellpadding="0">
<tr>

<td align="center" width="100%">
<asp:Button ID="registerNew" runat="server" class="btnfree"  style='margin-left:0;'
        Text="Register Now" ValidationGroup="b" 
        OnClientClick="javascript:return emailalready();" 
        onclick="registerNew_Click1" />&nbsp;&nbsp;
 <input type="reset" name="reset" value="Reset" class="btnfree"  style='margin-left:0;' />
</td>
  
</tr>
</table>
</td>
</tr>
<tr><td height="10px"></td></tr>
</table></td>

            <td width='10%'></td>
    </tr>

</table>
</div>

          


          
          </div>

        </td>
        </tr>
                               
     </table>
  </asp:Panel>
  <asp:HiddenField ID="Hiddentaget3" runat="server" />
 
 </div> </td>
  </tr>
	
</table>	


</form>		
</div>




	</div>
	
	

	<div class="supplier-details-part3">
      <h4>Browse Indian Products Directory</h4>
      <hr>
       <div class='prod_list_cat'>

<a href='https://products.jimtrade.com/1/agriculture.htm' title= "Agriculture ">Agriculture </a>

<hr>

</div>

<div class='prod_list_cat'>

<a href='https://products.jimtrade.com/1/automotive.htm' title= "Automotive ">Automotive </a>

<hr>

</div>

<div class='prod_list_cat'>

<a href='https://products.jimtrade.com/1/chemicals_pharmaceuticals.htm' title= "Chemicals & Pharmaceuticals ">Chemicals & Pharmaceuticals </a>

<hr>

</div>

<div class='prod_list_cat'>

<a href='https://products.jimtrade.com/1/construction.htm' title= "Construction & Interiors ">Construction & Interiors</a>

<hr>

</div>

<div class='prod_list_cat'>

<a href='https://products.jimtrade.com/1/electrical_electronics.htm' title= "Electronics">Electronics</a>

<hr>

</div>

<div class='prod_list_cat'>

<a href='https://products.jimtrade.com/1/fire_fighting_safety.htm' title= "Security & Protection ">Security & Protection</a>

<hr>

</div>

<div class='prod_list_cat'>

<a href='https://products.jimtrade.com/1/food_beverages.htm' title= "Food & Beverages ">Food & Beverages</a>

<hr>

</div>

<div class='prod_list_cat'>

<a href='https://products.jimtrade.com/1/gift_crafts.htm' title= "Gifts & Crafts ">Gifts & Crafts </a>

<hr>

</div>

<div class='prod_list_cat'>

<a href='https://products.jimtrade.com/1/health_beauty.htm' title= "Health & Beauty ">Health & Beauty</a>

<hr>

</div>

<div class='prod_list_cat'>

<a href='https://products.jimtrade.com/1/home_appliances.htm' title= "Home Appliances & Supplies ">Home Appliances & Supplies</a>

<hr>

</div>

<div class='prod_list_cat'>

<a href='https://products.jimtrade.com/1/industrial_supplies.htm' title= "Industrial Supplies ">Industrial Supplies</a>

<hr>

</div>

<div class='prod_list_cat'>

<a href='https://products.jimtrade.com/1/jewellery_immitation.htm' title= "Jewellery / Jewelry ">Jewellery / Jewelry</a>

<hr>

</div>

<div class='prod_list_cat'>

<a href='https://products.jimtrade.com/1/hardware.htm' title= "Hardware">Hardware</a>

<hr>

</div>

<div class='prod_list_cat'>

<a href='https://products.jimtrade.com/1/minerals_materials.htm' title= "Minerals & Materials ">Minerals & Materials</a>

<hr>

</div>

<div class='prod_list_cat'>

<a href='https://products.jimtrade.com/1/office_supplies.htm' title= "Office Supplies ">Office Supplies</a>

<hr>

</div>

<div class='prod_list_cat'>

<a href='https://products.jimtrade.com/1/printing_packaging.htm' title= "Printing & Packaging">Printing & Packaging</a>

<hr>

</div>

<div class='prod_list_cat'>

<a href='https://products.jimtrade.com/1/sports_toys.htm' title= "Sports & Toys ">Sports & Toys </a>

<hr>

</div>

<div class='prod_list_cat'>

<a href='https://products.jimtrade.com/1/textile_leather.htm' title= "Textiles & Leather">Textiles & Leather</a>

<hr>

</div>

<div class='prod_list_cat'>

<a href='https://products.jimtrade.com/1/electrical_equipments_supplies.htm' title= "Electrical Equipments & Supplies">Electrical Equipments & Supplies</a>

<hr>

</div>

<div class='prod_list_cat'>

<a href='https://products.jimtrade.com/1/tools.htm' title= "Tools">Tools</a>

<hr>

</div>

<div class='prod_list_cat'>

<a href='https://products.jimtrade.com/1/apparels_clothing.htm' title= "Apparels And Clothing ">Apparels And Clothing</a>

<hr>

</div>
</div>




	<div class="supplier-details-part3">
      <h4>Browse Indian Suppliers Directory</h4>
      <hr>
       <div class='prod_list_cat'>

<a href='https://directory.jimtrade.com/1/agriculture.htm' title= "Agriculture ">Agriculture </a>

<hr>

</div>

<div class='prod_list_cat'>

<a href='https://directory.jimtrade.com/1/automotive.htm' title= "Automotive ">Automotive </a>

<hr>

</div>

<div class='prod_list_cat'>

<a href='https://directory.jimtrade.com/1/chemicals_pharmaceuticals.htm' title= "Chemicals & Pharmaceuticals ">Chemicals & Pharmaceuticals </a>

<hr>

</div>

<div class='prod_list_cat'>

<a href='https://directory.jimtrade.com/1/construction.htm' title= "Construction & Interiors ">Construction & Interiors</a>

<hr>

</div>

<div class='prod_list_cat'>

<a href='https://directory.jimtrade.com/1/electrical_electronics.htm' title= "Electronics">Electronics</a>

<hr>

</div>

<div class='prod_list_cat'>

<a href='https://directory.jimtrade.com/1/fire_fighting_safety.htm' title= "Security & Protection ">Security & Protection</a>

<hr>

</div>

<div class='prod_list_cat'>

<a href='https://directory.jimtrade.com/1/food_beverages.htm' title= "Food & Beverages ">Food & Beverages</a>

<hr>

</div>

<div class='prod_list_cat'>

<a href='https://directory.jimtrade.com/1/gift_crafts.htm' title= "Gifts & Crafts ">Gifts & Crafts </a>

<hr>

</div>

<div class='prod_list_cat'>

<a href='https://directory.jimtrade.com/1/health_beauty.htm' title= "Health & Beauty ">Health & Beauty</a>

<hr>

</div>

<div class='prod_list_cat'>

<a href='https://directory.jimtrade.com/1/home_appliances.htm' title= "Home Appliances & Supplies ">Home Appliances & Supplies</a>

<hr>

</div>

<div class='prod_list_cat'>

<a href='https://directory.jimtrade.com/1/industrial_supplies.htm' title= "Industrial Supplies ">Industrial Supplies</a>

<hr>

</div>

<div class='prod_list_cat'>

<a href='https://directory.jimtrade.com/1/jewellery_immitation.htm' title= "Jewellery / Jewelry ">Jewellery / Jewelry</a>

<hr>

</div>

<div class='prod_list_cat'>

<a href='https://directory.jimtrade.com/1/hardware.htm' title= "Hardware">Hardware</a>

<hr>

</div>

<div class='prod_list_cat'>

<a href='https://directory.jimtrade.com/1/minerals_materials.htm' title= "Minerals & Materials ">Minerals & Materials</a>

<hr>

</div>

<div class='prod_list_cat'>

<a href='https://directory.jimtrade.com/1/office_supplies.htm' title= "Office Supplies ">Office Supplies</a>

<hr>

</div>

<div class='prod_list_cat'>

<a href='https://directory.jimtrade.com/1/printing_packaging.htm' title= "Printing & Packaging">Printing & Packaging</a>

<hr>

</div>

<div class='prod_list_cat'>

<a href='https://directory.jimtrade.com/1/sports_toys.htm' title= "Sports & Toys ">Sports & Toys </a>

<hr>

</div>

<div class='prod_list_cat'>

<a href='https://directory.jimtrade.com/1/textile_leather.htm' title= "Textiles & Leather">Textiles & Leather</a>

<hr>

</div>

<div class='prod_list_cat'>

<a href='https://directory.jimtrade.com/1/electrical_equipments_supplies.htm' title= "Electrical Equipments & Supplies">Electrical Equipments & Supplies</a>

<hr>

</div>

<div class='prod_list_cat'>

<a href='https://directory.jimtrade.com/1/tools.htm' title= "Tools">Tools</a>

<hr>

</div>

<div class='prod_list_cat'>

<a href='https://directory.jimtrade.com/1/apparels_clothing.htm' title= "Apparels And Clothing ">Apparels And Clothing</a>

<hr>

</div>
     
</div>
	
	
	
	
  <div class='adds text-center'><center>
<script async src='//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js'></script>
<!-- JimTrade_Reposnive_3 -->
<ins class='adsbygoogle'
style = 'display:block;max-width:728px;'
Data-ad-client='ca-pub-8040656654961143'
Data-ad-slot='3894435143'
data-ad-format='auto'></ins>
<script>
    (adsbygoogle = window.adsbygoogle || []).push({});
</script>
</center></div>


</div>

<div class='product-sidebar' >

<%--<div class='sidebar-apps' style='margin-top:0px;'>
<div style='display:table;width:100%' class='app_banner_1'>
<div style='display:table-row;'><div class='heading' align='center'>JimTrade.com is now on App<hr></div></div>
<div style='display:table-row;'><div class='srch' align='center'>Search or Enquire <br><span class='srch'>from manufacturers </span></div></div>
<div style='display:table-row;' align='center'><div class='cnt1'> on<span class='cnt'> 5,00,000 + </span> Products and <br><span class='cnt'>20,000 + </span> Categories</div></div>
<div style='display:table-row;'><div style='display:table-cell;width:100%;' align='center'><br><img src='http://images.jimtrade.com/mobileandroid.png' width='80px' height='80px'><br><br></div></div>
<div style='display:table-row;'>
<a href='https://www.jimtrade.com/mobileapp.htm' style='color:#ffffff;font-weight:bold;text-decoration:none' class='downld' target='_blank'>
Download App
</a>
</div>
</div>
</div>--%>


<div class='sidebar-adds'>	
<script async src='//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js'></script>
<!-- JimTrade_Reponsive_2 -->
<ins class='adsbygoogle'
style = 'display:inline-block;min-width:300px;max-width:300px;width:300px;height:600px;'
Data-ad-client='ca-pub-8040656654961143'
Data-ad-slot='2417701948'
data-ad-format='auto'></ins>
<script>
    (adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>

</div>

</section>

<section class='container'>

<div id='footer'>

<div class='footer-content'>

<dl>

<dt>About Jim Trade</dt>

<dd><a href='https://www.jimtrade.com/corporate/aboutus.htm' title='About JimTrade.com'>About JimTrade.com</a></dd>

<dd><a href='https://www.jimtrade.com/corporate/contactus.htm' title='Contact Us'>Contact Us</a></dd>

<dd><a href='https://www.jimtrade.com/corporate/sitemap.htm' title='Sitemap'>Sitemap</a></dd>

<dd><a href='https://www.jimtrade.com/corporate/help.htm' title='Help Center & FAQS'>Help Center &amp; FAQS</a></dd>
</dl>

</div>

<div class='footer-content' style='height:180px'>

<dl>

<dt>Buy on JimTrade.com</dt>

<dd><a href='https://products.jimtrade.com/' title='Products Directory'>Products Directory</a></dd>

<dd><a href='https://directory.jimtrade.com/' title='Suppliers Directory'>Suppliers Directory</a></dd>
<!--
<dd><a href='https://directory.jimtrade.com/indian_services/' title='Services Directory'>Services Directory</a></dd>

<dd><a href='https://www.jimtrade.com/new_products.aspx' title='New Products'>New Products</a></dd>-->

<dd><a href='javascript:Post_inquiry()' title='Post Inquiry'>Get Quotations</a></dd>



</dl>

</div>

<!--<div class='footer-content'>

<dl>

<dt>Sell on JimTrade.com</dt>

<dd><a href='http://suppliers.jimtrade.com/' title='By Category'>By Category</a></dd>

</dl>

</div>-->

<div class='footer-content'>

<dl>

<dt>Trade Fairs</dt>

<dd><a href='https://tradefair.jimtrade.com/default.htm#cat' title='By Category'>By Category</a></dd>

<dd><a href='https://tradefair.jimtrade.com/default.htm#mon' title='By Month'>By Month</a></dd>

</dl>

</div>

<form method='post' action='https://www.jimtrade.com/corporate/joinfree.aspx'>

<div class='footer-socialmedia'>

<!--<a href='https://www.jimtrade.com/login/jtCPanel_dashboard.aspx'><h5>My Jimtrade &nbsp;|</h5></a>

<a href='https://www.jimtrade.com/corporate/help.htm' class='logout'>FAQ's</a>

 <!--<h4>Free App&nbsp;&nbsp;:</h4>--> 

<!--<div class='bottomdownload'><span><a href='https://www.jimtrade.com/mobileapp.htm'>Download App</a></span></div>
-->
 <div class='footer-email'>

<h3>Follow On&nbsp;&nbsp;:</h3>

<a href='https://www.facebook.com/Jimtrade'><span class='social-icon fa-stack'>

 <i class='fa fa-facebook fa-stack-1x'></i>

 </span></a>

 <a href='https://twitter.com/jimtradeindia'><span class='social-icon fa-stack'>

  <i class='fa fa-twitter fa-stack-1x'></i>

</span></a>

<!--<a href='https://plus.google.com/105922198483937858220'><span class='social-icon fa-stack'>

<i class='fa fa-google-plus fa-stack-1x'></i>

</span></a>-->

<a href='https://www.jimtrade.com/rss'><span class='social-icon fa-stack social-icon2'>

  <i class='fa fa-rss fa-stack-1x'></i>

  </span></a>

 <hr class='mymail'>

 <input type='email' placeholder='Subscribe through E-Mail'>	

 <button class='btnmail' type='submit'><i class='glyphicon'><img src='https://www.jimtrade.com/jimAssets/images//mail.png'/></i></button>

</div>

</div></form>

<div style='float:left'>

<p>Copyright <i class='fa fa-copyright'></i> Jupiter Infomedia Ltd. All rights reserved including the right to reproduce the contents in whole or in part in any

form or medium without the express written permission of <a href='http://www.jupiterinfomedia.com/'>Jupiter Infomedia Ltd.</a> is prohibited. Your use of this website is subject to and constitutes acknowledgement and acceptance of our <a href='https://www.jimtrade.com/corporate/terms.htm'>Terms of Use.</a> Refer our <a href='https://www.jimtrade.com/corporate/privacypolicy.htm'>Privacy Policy</a> and our <a href='https://www.jimtrade.com/corporate/security.htm'>Security measures</a>

</p>

<p class='clear'><b>India Business Directory, Indian Suppliers Directory, Indian Products Directory from India</b></p>



 <h6>Product reviews by JimTrade is licensed under a Creative Commons Attribution-Noncommercial-No Derivative Works 2.5 India License. Based on a 

work at jimtrade.com. Permissions beyond the scope of this license may be available at jimtrade.com.

</h6>

</div>

</div>

</section>

<!-- responsive assets bottom -->

<script src='https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js'></script>

<script type='text/javascript' src='https://www.jimtrade.com/jimAssets/assets/response.js'></script> 

<!-- //responsive assets bottom -->






</body>
</html>