Click here to Skip to main content
15,919,500 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionAvoid refreshing page while fetching data from the other form in asp.net Pin
kavithapuranik10-Oct-07 19:14
kavithapuranik10-Oct-07 19:14 
AnswerRe: Avoid refreshing page while fetching data from the other form in asp.net Pin
Aavesh Agarwal10-Oct-07 19:27
Aavesh Agarwal10-Oct-07 19:27 
GeneralRe: Avoid refreshing page while fetching data from the other form in asp.net Pin
kavithapuranik10-Oct-07 19:45
kavithapuranik10-Oct-07 19:45 
GeneralRe: Avoid refreshing page while fetching data from the other form in asp.net Pin
kavithapuranik10-Oct-07 19:56
kavithapuranik10-Oct-07 19:56 
AnswerRe: Avoid refreshing page while fetching data from the other form in asp.net Pin
Spunky Coder10-Oct-07 20:04
Spunky Coder10-Oct-07 20:04 
GeneralRe: Avoid refreshing page while fetching data from the other form in asp.net Pin
Aavesh Agarwal10-Oct-07 20:07
Aavesh Agarwal10-Oct-07 20:07 
GeneralRe: Avoid refreshing page while fetching data from the other form in asp.net Pin
kavithapuranik10-Oct-07 20:18
kavithapuranik10-Oct-07 20:18 
GeneralRe: Avoid refreshing page while fetching data from the other form in asp.net Pin
Aavesh Agarwal10-Oct-07 20:48
Aavesh Agarwal10-Oct-07 20:48 
GeneralRe: Avoid refreshing page while fetching data from the other form in asp.net Pin
Aavesh Agarwal10-Oct-07 21:09
Aavesh Agarwal10-Oct-07 21:09 
GeneralRe: Avoid refreshing page while fetching data from the other form in asp.net Pin
kavithapuranik10-Oct-07 21:16
kavithapuranik10-Oct-07 21:16 
GeneralRe: Avoid refreshing page while fetching data from the other form in asp.net Pin
kavithapuranik11-Oct-07 2:23
kavithapuranik11-Oct-07 2:23 
AnswerRe: Avoid refreshing page while fetching data from the other form in asp.net Pin
Imran Khan Pathan10-Oct-07 21:09
Imran Khan Pathan10-Oct-07 21:09 
GeneralRe: Avoid refreshing page while fetching data from the other form in asp.net Pin
kavithapuranik10-Oct-07 21:23
kavithapuranik10-Oct-07 21:23 
GeneralRe: Avoid refreshing page while fetching data from the other form in asp.net Pin
kavithapuranik10-Oct-07 22:14
kavithapuranik10-Oct-07 22:14 
GeneralRe: Avoid refreshing page while fetching data from the other form in asp.net Pin
Imran Khan Pathan10-Oct-07 22:28
Imran Khan Pathan10-Oct-07 22:28 
GeneralRe: Avoid refreshing page while fetching data from the other form in asp.net Pin
kavithapuranik10-Oct-07 22:41
kavithapuranik10-Oct-07 22:41 
form1
---------

 <script  type="text/javascript"><br />
    function OpenWindow(id1,id2){ref = "refreshform2.aspx?id="+id1+"&id2="+id2;var strFeatures="toolbar=no,status=no,menubar=no,location=no"	strFeatures=strFeatures+",scrollbars=no,resizable=no,addressbar=no,height=250,width=220"newWin = window.open(ref,"TellObj",strFeatures);newWin.opener = top; }<br />
<br />
    </script>


code behind
LinkButton1.Attributes.Add("onclick", "OpenWindow(" + id1.ClientID + "," + id2.ClientID + ");")


form2
---------------
<script  type="text/javascript"><br />
    function setValues()<br />
{<br />
opener.document.getElementById('hid1').value=document.getElementById('TextBox1').value;<br />
opener.document.getElementById('hid2').value=document.getElementById('TextBox2').value; self.close();<br />
}<br />
<br />
    </script>



code behind-pageload
------------------
hid1.Value = Request.QueryString("Id1")<br />
        hid2.Value = Request.QueryString("Id2")


kavitha
GeneralRe: Avoid refreshing page while fetching data from the other form in asp.net Pin
Imran Khan Pathan10-Oct-07 22:53
Imran Khan Pathan10-Oct-07 22:53 
GeneralRe: Avoid refreshing page while fetching data from the other form in asp.net Pin
kavithapuranik11-Oct-07 2:21
kavithapuranik11-Oct-07 2:21 
QuestionFileUpload FilePath Problem in Mozilla Pin
N a r e s h P a t e l10-Oct-07 19:07
N a r e s h P a t e l10-Oct-07 19:07 
AnswerRe: FileUpload FilePath Problem in Mozilla Pin
Sandeep Akhare10-Oct-07 20:05
Sandeep Akhare10-Oct-07 20:05 
AnswerRe: FileUpload FilePath Problem in Mozilla Pin
Dhyanga10-Oct-07 23:58
Dhyanga10-Oct-07 23:58 
GeneralRe: FileUpload FilePath Problem in Mozilla Pin
Sandeep Akhare11-Oct-07 1:06
Sandeep Akhare11-Oct-07 1:06 
Questiondistribute the application Pin
SUDHAKAR PALLAM10-Oct-07 17:33
SUDHAKAR PALLAM10-Oct-07 17:33 
AnswerRe: distribute the application Pin
Aavesh Agarwal10-Oct-07 18:12
Aavesh Agarwal10-Oct-07 18:12 
GeneralRe: distribute the application Pin
SUDHAKAR PALLAM10-Oct-07 18:18
SUDHAKAR PALLAM10-Oct-07 18:18 

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.