Click here to Skip to main content
15,892,575 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Password Textbox in IE Pin
Arindam Tewary5-Apr-10 0:55
professionalArindam Tewary5-Apr-10 0:55 
AnswerRe: Password Textbox in IE Pin
Dinesh Mani5-Apr-10 0:58
Dinesh Mani5-Apr-10 0:58 
AnswerRe: Password Textbox in IE Pin
Randal Vance Cunanan5-Apr-10 1:44
Randal Vance Cunanan5-Apr-10 1:44 
AnswerRe: Password Textbox in IE Pin
Anurag Gandhi5-Apr-10 4:35
professionalAnurag Gandhi5-Apr-10 4:35 
QuestionHow to expand the Div Tag to left hand side when mouse button click on Left side of Div Tag Pin
ChandrakanthGaddam4-Apr-10 22:53
ChandrakanthGaddam4-Apr-10 22:53 
AnswerRe: How to expand the Div Tag to left hand side when mouse button click on Left side of Div Tag Pin
Arindam Tewary4-Apr-10 23:16
professionalArindam Tewary4-Apr-10 23:16 
GeneralRe: How to expand the Div Tag to left hand side when mouse button click on Left side of Div Tag Pin
ChandrakanthGaddam4-Apr-10 23:52
ChandrakanthGaddam4-Apr-10 23:52 
GeneralRe: How to expand the Div Tag to left hand side when mouse button click on Left side of Div Tag Pin
Arindam Tewary5-Apr-10 1:09
professionalArindam Tewary5-Apr-10 1:09 
Please check the following code which sets left and top hence you can see the code 'relocates' an existing div to 0,0 location of the browser.

<script language="javascript" type="text/javascript">
    function relocate()
    {
       var id=arguments[0];
       var divObj =document.getElementById(id);
       divObj.style.top = "0px";
       divObj.style.left = "0px";
    }


<form id="form1" runat="server">
    <div style="background-color:Red;top:500px; left:500px; position:fixed;" id="div1" onclick="javascript:relocate(this.id)">sample</div>
    </form>


Hope it helps you,
Thanks,
Arindam D Tewary

Questionhow to use compare validator in gridview control using asp with c# Pin
developerit4-Apr-10 22:34
developerit4-Apr-10 22:34 
AnswerRe: how to use compare validator in gridview control using asp with c# Pin
Tej Aj5-Apr-10 0:00
Tej Aj5-Apr-10 0:00 
AnswerRe: how to use compare validator in gridview control using asp with c# Pin
Tej Aj5-Apr-10 7:00
Tej Aj5-Apr-10 7:00 
GeneralRe: how to use compare validator in gridview control using asp with c# Pin
developerit5-Apr-10 19:59
developerit5-Apr-10 19:59 
GeneralRe: how to use compare validator in gridview control using asp with c# Pin
Tej Aj5-Apr-10 20:59
Tej Aj5-Apr-10 20:59 
Questionhow to email gridview data in asp.net with c# Pin
developerit4-Apr-10 22:26
developerit4-Apr-10 22:26 
AnswerRe: how to email gridview data in asp.net with c# Pin
Arun Jacob4-Apr-10 22:59
Arun Jacob4-Apr-10 22:59 
GeneralRe: how to email gridview data in asp.net with c# Pin
developerit5-Apr-10 0:23
developerit5-Apr-10 0:23 
GeneralRe: how to email gridview data in asp.net with c# Pin
Arun Jacob5-Apr-10 0:29
Arun Jacob5-Apr-10 0:29 
GeneralRe: how to email gridview data in asp.net with c# Pin
developerit5-Apr-10 0:45
developerit5-Apr-10 0:45 
AnswerRe: how to email gridview data in asp.net with c# Pin
Arun Jacob5-Apr-10 1:24
Arun Jacob5-Apr-10 1:24 
AnswerRe: how to email gridview data in asp.net with c# Pin
Tej Aj6-Apr-10 22:51
Tej Aj6-Apr-10 22:51 
Questionregular expression for hyperlink tag Pin
enjoycrack4-Apr-10 22:20
enjoycrack4-Apr-10 22:20 
AnswerRe: regular expression for hyperlink tag Pin
Arun Jacob4-Apr-10 22:51
Arun Jacob4-Apr-10 22:51 
GeneralRe: regular expression for hyperlink tag Pin
enjoycrack4-Apr-10 23:14
enjoycrack4-Apr-10 23:14 
AnswerRe: regular expression for hyperlink tag Pin
Arindam Tewary4-Apr-10 23:09
professionalArindam Tewary4-Apr-10 23:09 
GeneralRe: regular expression for hyperlink tag Pin
enjoycrack4-Apr-10 23:13
enjoycrack4-Apr-10 23:13 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.