Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I'm creating a web page which has DataList. All Items in DataList have Checkboxes front of them. User checks some files, or all files, maybe just one file to download them. How can i make it happen? I'm using ASP.NET 4.5 Web Forms. Thanks :)
there are two ways doing it
1). Open multiple window with javascript with new name, call your aspx page in that new window.
2).First zip all selected files and then download that single zip file
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 4 months ago.
Improve this question
I have a program where I parse the contents of a website. Then it searches the images and then copies those files to the client browser as downloads.
I can download the image to the client's browser but It CAN ONLY DOWNLOAD ONE IMAGE. Once the first one finishes, the other images fail to download.
I have searched but I cannot find any answers. The ResponseWriter seems to stop receiving any more data after I call rw.Write().
Is it that there can only be one write before it closes or is there a way to write multiple files/images at a time?
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
i want to crawl every pages from the same head url
ex:"http://www.htc.com/tw/XXXXXXX"
Hanv any way to do?
thanks.
That won't work since most web servers have directory listing disabled.
There is no way to crawl every page. However, you can crawl every sub page which is linked on the main page. You could for example create an array of all links found on that site, and filter those with the same domain name. But this won't find directory's which aren't linked anywhere.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I have aspx page popup in my project.
I want to open page in a same window, for example when you search on Google several link appear and click on any link that link open in same tab.
I want this in asp.net
Thats not related to ASP.NET but javascript. Use window.open:
window.open("", "_self");
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am new to development of asp.net applications... I want to give different language options for the user to choose as he wishes.
Thanks in advance
The best way to do this is to have all the text for your site set in a language table in your database. Every piece of text. Set a unique ID for each languae, 1=English, 2=Spanish, and so on. Then, when populating the text on your page, rather than calling up the text from a static table, call it up from the Language table for that ID.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
My asp.net mvc application uses files ....
http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js
http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.5/jquery-ui.min.js
Can these be downloaded to files given radial applications for offline mode?
Right click the links, then save the files. Update your script reference to point to these new saved files.
You could also put in some javascript code to detect if jquery has been loaded from the online version, and if not, then reference the offline versions.
EDIT
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/libs/jquery-1.6.2.min.js"><\/script>')</script>