Hi guys, Hope this time someone replies
first of all, Is that possible to combine all above Asp.net and Ajax controls?
The below one is my web user control code which I am using in the webpart zone.
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<
asp:Panel ID="EditContainer" runat="server" DefaultButton="btnSubmit" >
Start Date:
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
End Date:
<asp:TextBox ID="TexBox2" runat="server"></asp:TextBox>
<asp:Button ID="btnSubmit" runat="server" Text="Generate Data"
OnClientClick="window.open('Page2.aspx?a=' + 'textbox1value' + ',' + 'textbox2value', '_blank');"
/>
</asp:Panel>
</
ContentTemplate>
</asp:UpdatePanel>
Now the only problem is to how to get the value of TextBox1 and TextBox2 and pass it on btnSubmit button's OnClientClick event as highlighted above without using full postback. Is that anyway I can pass this two values on Page2.aspx on submit button click without round trip????
Please help, If no one can answer this , then atleast lets discuss.
should I use javascript or ne great idea???
work smarter, Not Harder.
Bhavesh Patel