|
Hi friends. is it possible to use an asp web site like a telephone. i ve made a website. there are 10 users of this website. ı can understand who is online and who isnt. is it possible to put a button whose text is "talk to this user" next to each user and send and play this sound stream at remote side. I found this Sending and playing microphone audio over network[^] but it is quite complicated to me. Do you have an easier idea.
|
|
|
|
|
Do you want the site to actually make phone calls to the users or do you want to just play the audio to them on their speakers?
There are only 10 types of people in the world, those who understand binary and those who don't.
|
|
|
|
|
phone calls via their microphones. I couldn't find an exact solution yet but i am thinking of this:
When a user clicks on a button to talk to someone else, i am planning to create a rtp stream. this stream wont go to anybody's computer. It will go to server itself but with some unique number on it. Somehow i will try to make users decode this stream using those unique numbers.
|
|
|
|
|
I haven't done that before. I have done phone calls, and products like Microsoft Speech Server make it pretty easy.
There are only 10 types of people in the world, those who understand binary and those who don't.
|
|
|
|
|
|
dear sirs
i have DropDownList bounded to a datasource , when i read its SelectedValue , the displayed item is changed in the dropdownlist
say dropdownlist contains item1 , item2 , item3 , item4 , ...etc
whatever i select , the dropdownlist changed to item2
thx
dear sir
i discovered the problem became more complicated than i thought
some more background is needed
the dropdownlist is binded to datasoure ( username , password , user rank), i display the username and i return the password in selected value and the dropdownlist sorted by rank
indeed the dropdownlist working so fine and the selected item remains even after reading selected value but IN ONLY ONE COND. that such username has a unique password
for example:
user pass
aaa 1234
bbb 1234
ccc 34343
dddd 67657
if i choose ccc it will return 34343 selected index 2
if i choose dddd it will return 67657 selected index 3
if i choose aaa it will return 1234 if aaa is higher rank than bbb
if i choose bbb it will return 1234 selected index 1
please kindly help me
thx alot
bye
modified 16-Dec-12 16:26pm.
|
|
|
|
|
set AutoPostBack to false.
|
|
|
|
|
DropDownList.SelectedValue is already false 
|
|
|
|
|
whether in its Page_Load event has been added
like this:
(! Page.IsPostBack)
{
}
to be this
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
}
}
|
|
|
|
|
I use a windows 2008 R2 dedicated server. Recently I'm in a weird problem. I host almost 15 sites in that server.All works well and the average cpu load remains 10-15 all time. Recently one of the sites starts troubling me. When it starts, the Cpu reaches 99-100 and all getting stopped. When I stopped that site and and its application pool, the server come back to normal way. This isnt a over traffic problem.Even when I point the hosted files to another domain, that site works well. Such as, My problematic site is abc.com. When I point the directory of abc.com to other xyz.com, no problem occurs. But starting abc.com hangs all things. I find that php-cgi.exe and mysqld.exe cause that damage, but same code running under other domain remain intact. ANd again this is not a trafic issue, as no sooner than I had started abc.com, cpu reaches 100%!!! Please suggest something to get me out of this.
|
|
|
|
|
Are you sure it is the same code? Sure sounds like something with the code is getting into a loop.
There are only 10 types of people in the world, those who understand binary and those who don't.
|
|
|
|
|
I have 3 pages say A.aspx,B.aspx and C.aspx.
Page A and B redirect to common page C.aspx.Now on page C i want to know from which page its redirected to c,I want to do following on page C.aspx
if(redirected from A)
{
print abc
}
if(redirected from B)
{
print xyz
}
I dont know how to catch redirection request.Please post the code in C# asp.net.
|
|
|
|
|
I think it's request.url.referer
|
|
|
|
|
detailed explanation of mr.jkirkerx
like here may be:
var prevPage = Page.Request.Url.Referer.ToString();
if(prevPage == "pageA.aspx")
{
Response.Redirect("pageA.aspx",false);
}
else
{
Response.Redirect("pageB.aspx",false);
}
|
|
|
|
|
How can I show images and swf files in one slideshow control?
|
|
|
|
|
There should be some jquery plugins that can do this.
There are only 10 types of people in the world, those who understand binary and those who don't.
|
|
|
|
|
Hi,
I have two buttons in one page button1 and button2 each with its own event. When clicking the first button it works fine but clicking the second button nothing is happening..
what could be the reason?
Technology News @ www.JassimRahma.com
|
|
|
|
|
what's u're code,explain more.maybe it depends on update panel
|
|
|
|
|
Jassim Rahma wrote: what could be the reason? Any one of a million things, but without some more detail there is no way anyone can guess.
One of these days I'm going to think of a really clever signature.
|
|
|
|
|
Hi,
You should paste your code here, and then we can give you some ideas.
Comm100 - Leading Live Chat Software Provider
modified 28-May-14 1:48am.
|
|
|
|
|
can see Your code in aspx,and code behind....
so we can be clear shadow of the problems you
|
|
|
|
|
I want to add both text and image to an Item in dropdown but when I add it just show me the source of image please help me
thanks.
|
|
|
|
|
Hi,
I think you can customize a control by yourself.
Comm100 - Leading Live Chat Software Provider
modified 28-May-14 1:48am.
|
|
|
|
|
Do u think u're answer was useful?? I know to customize it but HOW? please say an example
thanks
|
|
|
|
|
Hi,
I would like to ask what's the bset SlideShow control to use with ASP.NET from your experience?
Thanks,
Jassim
http://www.JassimRahma.com[^]
Technology News @ www.JassimRahma.com
|
|
|
|