Split My Page Into 2 parts (Scrolled Part and Fixed Part with no Scrolling)http://forums.asp.net/t/1801102.aspx/1?Split+My+Page+Into+2+parts+Scrolled+Part+and+Fixed+Part+with+no+Scrolling+Wed, 09 May 2012 09:40:59 -040018011024969626http://forums.asp.net/p/1801102/4969626.aspx/1?Split+My+Page+Into+2+parts+Scrolled+Part+and+Fixed+Part+with+no+Scrolling+Split My Page Into 2 parts (Scrolled Part and Fixed Part with no Scrolling) <p>I have asp.net page and it has 2 controls Grid View and Button ...i want to devide it into 2 parts i want to allow Scrolling in Grid View only but make button come in Fixed place appear all over the page even in in scrolling no disappear in scrolling</p> 2012-05-07T18:44:43-04:004969644http://forums.asp.net/p/1801102/4969644.aspx/1?Re+Split+My+Page+Into+2+parts+Scrolled+Part+and+Fixed+Part+with+no+Scrolling+Re: Split My Page Into 2 parts (Scrolled Part and Fixed Part with no Scrolling) <p>Ajax is your friend :}</p> <p><a href="http://www.asp.net/ajaxLibrary/AjaxControlToolkitSampleSite/AlwaysVisibleControl/AlwaysVisibleControl.aspx">http://www.asp.net/ajaxLibrary/AjaxControlToolkitSampleSite/AlwaysVisibleControl/AlwaysVisibleControl.aspx</a></p> <p>&nbsp;</p> 2012-05-07T19:02:47-04:004970626http://forums.asp.net/p/1801102/4970626.aspx/1?Re+Split+My+Page+Into+2+parts+Scrolled+Part+and+Fixed+Part+with+no+Scrolling+Re: Split My Page Into 2 parts (Scrolled Part and Fixed Part with no Scrolling) <p>Hello,</p> <p>Simply set the position:fixed for the button. See the sample app I created for you</p> <pre class="prettyprint">&lt;%@ Page Language=&quot;C#&quot; AutoEventWireup=&quot;true&quot; CodeBehind=&quot;WebForm1.aspx.cs&quot; Inherits=&quot;WebApplication1.WebForm1&quot; %&gt; &lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt; &lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt; &lt;head id=&quot;Head1&quot; runat=&quot;server&quot;&gt; &lt;/head&gt; &lt;body&gt; &lt;form id=&quot;form1&quot; runat=&quot;server&quot;&gt; &lt;div style=&quot;position: fixed&quot;&gt; &lt;asp:Button ID=&quot;Button1&quot; runat=&quot;server&quot; Text=&quot;Button&quot; /&gt; &lt;/div&gt; &lt;div style=&quot;width: 200px; height: 1200px; background-color: Red&quot;&gt; &lt;div&gt; &lt;/div&gt; &lt;/div&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt;</pre> 2012-05-08T09:53:31-04:004971167http://forums.asp.net/p/1801102/4971167.aspx/1?Re+Split+My+Page+Into+2+parts+Scrolled+Part+and+Fixed+Part+with+no+Scrolling+Re: Split My Page Into 2 parts (Scrolled Part and Fixed Part with no Scrolling) <p>If The container fixed position div is the second div not the first one it will disappear</p> <p></p> 2012-05-08T15:44:45-04:004971172http://forums.asp.net/p/1801102/4971172.aspx/1?Re+Split+My+Page+Into+2+parts+Scrolled+Part+and+Fixed+Part+with+no+Scrolling+Re: Split My Page Into 2 parts (Scrolled Part and Fixed Part with no Scrolling) <p>Hi,</p> <p></p> <blockquote><span class="icon-blockquote"></span> <h4>AhmedHusseinITI</h4> If The container fixed position div is the second div not the first one it will disappear</blockquote> <p></p> <p>What? I don't understand. Can you be please more precise?</p> 2012-05-08T15:48:20-04:004971185http://forums.asp.net/p/1801102/4971185.aspx/1?Re+Split+My+Page+Into+2+parts+Scrolled+Part+and+Fixed+Part+with+no+Scrolling+Re: Split My Page Into 2 parts (Scrolled Part and Fixed Part with no Scrolling) <p>Try That </p> <pre class="prettyprint">&lt;%@ Page Language=&quot;C#&quot; AutoEventWireup=&quot;true&quot; CodeBehind=&quot;WebForm1.aspx.cs&quot; Inherits=&quot;WebApplication1.WebForm1&quot; %&gt; &lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt; &lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt; &lt;head id=&quot;Head1&quot; runat=&quot;server&quot;&gt; &lt;/head&gt; &lt;body&gt; &lt;form id=&quot;form1&quot; runat=&quot;server&quot;&gt; &lt;div style=&quot;width: 200px; height: 1200px; background-color: Red&quot;&gt; &lt;div&gt; &lt;/div&gt; &lt;/div&gt; &lt;div style=&quot;position: fixed&quot;&gt; &lt;asp:Button ID=&quot;Button1&quot; runat=&quot;server&quot; Text=&quot;Button&quot; /&gt; &lt;/div&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt;</pre> <p></p> 2012-05-08T16:01:59-04:004971212http://forums.asp.net/p/1801102/4971212.aspx/1?Re+Split+My+Page+Into+2+parts+Scrolled+Part+and+Fixed+Part+with+no+Scrolling+Re: Split My Page Into 2 parts (Scrolled Part and Fixed Part with no Scrolling) <p>Any Suggestions about that <a title="Ruchira" href="../../../../members/Ruchira.aspx"> Ruchira</a></p> 2012-05-08T16:15:10-04:004972011http://forums.asp.net/p/1801102/4972011.aspx/1?Re+Split+My+Page+Into+2+parts+Scrolled+Part+and+Fixed+Part+with+no+Scrolling+Re: Split My Page Into 2 parts (Scrolled Part and Fixed Part with no Scrolling) <p>Hi, where do you want the button stay on the page? You can refer to the following example, with it, the button will stay 20px from top and 20px from left.</p> <pre class="prettyprint">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt; &lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt; &lt;head id=&quot;Head1&quot; runat=&quot;server&quot;&gt; &lt;/head&gt; &lt;body&gt; &lt;form id=&quot;form1&quot; runat=&quot;server&quot;&gt; &lt;div style=&quot;width: 200px; height: 1200px; background-color: Red&quot;&gt; &lt;div&gt; &lt;/div&gt; &lt;/div&gt; &lt;div style=&quot;position: fixed; top: 20px; left: 20px&quot;&gt; &lt;asp:Button ID=&quot;Button1&quot; runat=&quot;server&quot; Text=&quot;Button&quot; /&gt; &lt;/div&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt;</pre> <p></p> 2012-05-09T06:20:28-04:004972318http://forums.asp.net/p/1801102/4972318.aspx/1?Re+Split+My+Page+Into+2+parts+Scrolled+Part+and+Fixed+Part+with+no+Scrolling+Re: Split My Page Into 2 parts (Scrolled Part and Fixed Part with no Scrolling) <p>I want The Second Bottom Div be fixed in the page ...appears even in scroll ...come above anything...but to be in the bottom of the page</p> <p></p> 2012-05-09T08:42:03-04:004972463http://forums.asp.net/p/1801102/4972463.aspx/1?Re+Split+My+Page+Into+2+parts+Scrolled+Part+and+Fixed+Part+with+no+Scrolling+Re: Split My Page Into 2 parts (Scrolled Part and Fixed Part with no Scrolling) <p>Hi, please try:</p> <pre class="prettyprint">&lt;div style=&quot;position: fixed; bottom:0px; left: 20px&quot;&gt; &lt;asp:Button ID=&quot;Button1&quot; runat=&quot;server&quot; Text=&quot;Button&quot; /&gt; &lt;/div&gt;</pre> <p></p> 2012-05-09T09:40:59-04:00