|
hi , i have i web site , i have a text box and button , when i type user name in text box a dialog warn appear for remote user , how i can do this ?
|
|
|
|
|
re7et_3esh wrote: dialog warn appear for remote user
I'm not excatly sure what you mean by this, but if you subscribe to the onblur event of the textbox you can display an alert window.
only two letters away from being an asset
|
|
|
|
|
hi man , i know that , but how i can allow dialog appear to particular user? for example
i type ur nick in text box and say "Hello!!!"and click submit button , then a dialog warn appear for u
|
|
|
|
|
re7et_3esh wrote: allow dialog appear to particular user?
Still not clear here.
1) In the code behind you check which user the page is being rendered for than attached the javascript event to the textbox as appropriate
or
2) Make an Ajax call from the onblur event to determine if the alert box should be displayed or not
only two letters away from being an asset
|
|
|
|
|
thank u man alot , can u give me simple example?
|
|
|
|
|
Try here[^]
only two letters away from being an asset
|
|
|
|
|
use a javascript alert box/confirm box?
|
|
|
|
|
hi man , i know that , but how i can allow dialog appear to particular user? for example
i type ur nick in text box and say "Hello!!!"and click submit button , then a dialog warn appear for u
|
|
|
|
|
<html>
<head>
<script>
function check(){
if (document.getElementById('mytext') == "Hello!!!"){
alert("You said 'hello!!!'");
}
}
</script>
</head>
<body>
<input id="mytext" type="text" onkeyup="check()" />
</body>
</html>
|
|
|
|
|
Are you basically trying to write a chat room kind of thing?
So, if I enter re7et_3esh hello in my browser, hello will popup in your browser?
|
|
|
|
|
hi man , no not chat
example i have a web form , and i want to send dialog warn to user who is nick name is re7et_3esh by entring his nick name in text box , then a dialog warn in java script appear for him , its possible?
|
|
|
|
|
Hey there i have been working on a problem for many hours and i got tired. The problem is that on row databound or on row editing the FindControl method returns null for my control which is found in the edit item template. Any help???
|
|
|
|
|
Try this Code
HyperLink txtMember = (HyperLink)(e.Item.FindControl("controlname"));
if still not working, Post your Code
|
|
|
|
|
thanks but i found the solution it is the same as u did but my rpoblem was i used different control id. that was my problem
|
|
|
|
|
Hi All,
I'm trying to get a button which looks exactly the same whether it is enabled or disabled, but whenever I disable the button it seems to ignore any font styles I have set. This seems to be the case in IE but not other browsers.
So does anybody know the CSS to change a disabled button so that the font is not embossed?
Thanks in advance,
Chris
|
|
|
|
|
not sure about css on a disabled button but you could use an image for your button and control it with javascript.
<script>
var disabled = 0;
function myButtonFunction(){
if (disabled = 0) {
disabled = 1;
document.getElementById('myBtn').src = "mydisabledimage.jpg";
//do something here
}
}
</script>
<input type="image" id="myBtn" src="myimage.jpg" onclick="myDisableButtonFunction()" />
|
|
|
|
|
Thanks for the response, Marc. I am trying to avoid going down that route if I possibly can because:
- I am deploying in an old version of SharePoint, and it doesn't play nice with JS
- I need buttons to be resizeable
Anybody have any other thoughts?
Thanks,
Chris
|
|
|
|
|
alternatively you could hide the button using css?
display:none;
visibility:hidden;
|
|
|
|
|
I thought about doing that, but it would kinda mess up how the page looks.
Basically what happens at the moment is that the user clicks a search button, I display the search options/results in a seperate div which is overlayed on top of the rest of the page. When this happens I switch to a darker style sheet to show that the rest of the page is greyed out. If I were to remove (from the users perspective) buttons as well it would look a bit odd.
Thanks,
Chris
|
|
|
|
|
you could always unhide an image of a disabled button in its place
display:inline;
visibility:visible;
|
|
|
|
|
Maybe. Resizing is still a problem though...
|
|
|
|
|
Hi Marc,
I have done something similar to this (see my post below). Thanks for the help!
Chris
|
|
|
|
|
I have now got a solution: I hide the button, and unhide a html button which looks correct that does not cause a postback.
I'm not 100% happy with this (a pure CSS solution would be nicer) so if anybody has any other ways of doing it...
Chris
|
|
|
|
|
Hello, I am trying to find a way to make a page redirect. The idea of the page is that you type qcuil.tk/{search terms here} then it redirects to cuil.com/search?q={search terms here}.
Here is the code:
<html>
<head>
<noscript></noscript><!-- --><script type="text/javascript" src="http://www.freewebs.com/p.js"></script><script type="text/javascript">
var search()
alert("1");
a=location.replace("http://qcuil.tk/","http://cuil.com/search?q=");
alert("2");
location.href=a;
</script>
</head>
<body onLoad="javascript:search()">
</body>
</html>
this doesn;t work. Anyone have any ideas?
|
|
|
|
|
Hi,
hmmm your code looks bit strange. Try to write your javascript function like this:
function search() {
location.href = location.replace("http://qcuil.tk/","http://cuil.com/search?q=");
}
By the way, Mozilla Firefox offers an error console (can be found under extras) which is pretty good for testing javascripts.
Regards
Sebastian
|
|
|
|