DangerDev 107 Posting Pro in Training

Actually you are looking something like storing user preferences, see this article:
http://msdn.microsoft.com/en-us/magazine/cc163949.aspx

RoyMicro commented: helpful +1
DangerDev 107 Posting Pro in Training

the way you are using clearInterval is not correct.
its should be something like this:

var t;
//to start
t=setTimeout("someFunction()",1000);
//to stop
clearTimeout(t);

for more information in this, just see:
http://www.w3schools.com/js/js_timing.asp

DangerDev 107 Posting Pro in Training
DangerDev 107 Posting Pro in Training

Don't look for code here. Spoonfeeding is strictly avoided here. Let us know what you have done so far.

DangerDev 107 Posting Pro in Training

Please use proper English, didn't you read above posts by yellowSnow?

Salem commented: It appears they haven't read anything yet +36
DangerDev 107 Posting Pro in Training

Try to avoid GOTO. Put main loop inside one more loop or try some other logic. Use of GOTO will create all the mess at last.

Ancient Dragon commented: Absolutely yes. +36
DangerDev 107 Posting Pro in Training

Its not a good idea to have source code sent via email. Please answer everything here in this community, let others also learn. :)

DangerDev 107 Posting Pro in Training
sknake commented: that sums it up! +6
DangerDev 107 Posting Pro in Training

try for your self.
if you face problem while trying post here.

DangerDev 107 Posting Pro in Training

do in this way:

...............
Object x;
x = s.Pop();
ArrayList al=x as ArrayList ;
if(al!=null)
{
 al.Add("Something");
}
...............
DangerDev 107 Posting Pro in Training

Hi,
Read example here. It will help you. You have to call dataReader4.Read() before reading it. If still problem persist please post code what you have done so far.

DangerDev 107 Posting Pro in Training

Or, create a constructor in Form2 which take loginId String as parameter.

DangerDev 107 Posting Pro in Training

do you want to create tool for this? if yes then try using regular expression.

DangerDev 107 Posting Pro in Training

you can use data base,
from the second application (after authentication has been done) you can query session variable from the browser and check the value of that data from data base.

DangerDev 107 Posting Pro in Training

hi
dont use innerHTML property with text box. its property of tag element like div.
use
document.getElementById('txtSMS').value="hiiiii";

or see an example;

<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Untitled Page</title>
  <script type="text/javascript" >
    function clickMe()
    {
        alert(document.getElementById('id_TB1').value);
        document.getElementById('id_TB1').value="hiiiii";
    }
  </script>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:TextBox ID="id_TB1" runat="server"></asp:TextBox>
    </form>
    <input type='Button' ID="Button1" OnClick="javascript:clickMe();" Text="Click Me" /></div>

</body>
</html>
peter_budo commented: Nice example +7
DangerDev 107 Posting Pro in Training

I think following things are necessary:
--------------------------------------------
1. You should be good at HTML
2. You should be familiar with JavaScript
3. You should be familiar with CSS
4. Yous should be familiar with at least one of the
server side scripting language like PHP, JSP,
ASP.
5. You should know about browser technology,
else will be endup suffering from browser war.

DangerDev 107 Posting Pro in Training

It should be noted that no ethically-trained software engineer would ever consent to write a DestroyBaghdad procedure. Basic professional ethics would instead require him to write a DestroyCity procedure, to which Baghdad could be given as a parameter.
-------Nathaniel S Borenstein

ZZucker commented: excellent observation +1