I have an index.aspx and loading default.aspx like this.
$('#slide_2').load('default.aspx');
I need a fileupload in default.aspx
<cc1:AsyncFileUpload ID="UrunResimFileUpload" ClientIDMode="AutoID" UploaderStyle="Traditional" Width="100px" runat="server" OnUploadedComplete="UploadComplete" OnClientUploadStarted="uploadstarted" OnClientUploadComplete="showConfirmation" />
it is not working. Cause jquery load...
So I wrote that code to index.aspx, and made fileupload's position absolute. changed top and left positions. This is a solution, but I don't want this.
I'm wanting another solution, like this;
$('#a_div_in_default.aspx').html($('#fileupload_div'));
How can we do this?
Edited all post. Is this explanatory?