It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'd like to stream music with aspx, but i dont know how to start!
My general idea is that users, can have their one playlists, and upload their musics, but i dont know how can they hear their own musics trough the website.
The second idea is that the most voted playlist is streamed online for the people who want to hear!
Once users upload their audio files, you can use the HTML5 <audio> tag. AudioJS is a library that will make things easier for you.
I assume this is for education purpose? Otherwise, there are a few IceCast / ShoutCast offerings out there that already have some of this functionality.
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I need help here. I am trying to create a program that allows users to listen to the radio from a site I work on, without actually getting on the site. I have created the page I need it to display, but I am having trouble getting it to display in the Forms Application.
This is the page it needs to display:
If anyone could help me, that'd be great. Thanks in advance, even though I will probably say it again.
http://pastebin.com/0cSLMHht
Please use the Windows WebBrowser Control for it
see link here http://msdn.microsoft.com/en-us/library/system.windows.forms.webbrowser.aspx
Examples are here http://msdn.microsoft.com/en-us/library/2te2y1x6
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'm trying to implement a basic file, image upload utility into a small, simple (built using the Visual Web Developer tutorial) C# MVC3 ASP.Net web site. I have see this utility pointed out here on StackOverFlow a few times:
https://github.com/blueimp/jQuery-File-Upload
...but unsure if I can just slot it into my MVC3 C# Website? (I am very new to attempting to learn MVC3 with C#).
I also see lots of this guides floated around the place:
http://aspzone.com/tech/jquery-file-upload-in-asp-net-mvc-without-using-flash
http://davidsonsousa.net/en/post/how-to-upload-a-file-using-mvc-3-and-ajax
http://tomas.epineer.se/archives/3
Can any of these simply be slotted into my website?
Appreciate any help
Yes. The first two seem to fit perfectly.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I've made games with c# but have never done anything with networking or accessing a website via c#, so I was wondering how I would be able to search twitter post for certain keywords, counting how many come up but are recent post. Thank you very much.
I suggest that you'll check Linq to Twitter:
http://linqtotwitter.codeplex.com/
This website should get you on the right track with searching inside a post with Linq To Twitter:
http://geekswithblogs.net/WinAZ/archive/2011/04/28/displaying-search-results-with-linq-to-twitter-and-asp.net-mvc.aspx
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I want develop a music finder program. I choose music database, vkontakte. But I can't find the vkontakte api example for c# .
https://github.com/grunichev/rhythmbox-vkontakte
http://silverlightvkapi.codeplex.com/
http://xternalx.com/sexy/vkontakte-c-api/
Vkontakte api .NET wrapper
Silverlight API:
Silverlight vkontakte API
Download VKMusic from this website
and use It.) It is joke. Better go to http://www.gotdotnet.ru/forums/2/127256/ Russian programers know about vk more and you don't need to use english.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I would like towrite files into a flash drive without changing the disk usage bar displayed in win 7 (using programming c#/other methods)
Is it possible?
If so, may you give me an example code to do this!
Thank you!
Technically files are just references to blocks of written flash memory. If you copy the file to the flashdrive and delete it its still there until it gets overwritten. If you somehow save the reference you can access it if the flash drive hasn't changed. I don't have a code sample, just wanted to give you a direction.