Click here to Skip to main content
15,900,816 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Update all gridview rows at once [modified] Pin
amina8914-Oct-10 0:02
amina8914-Oct-10 0:02 
GeneralRe: Update all gridview rows at once Pin
phil.o14-Oct-10 5:35
professionalphil.o14-Oct-10 5:35 
GeneralRe: Update all gridview rows at once Pin
amina8917-Oct-10 3:35
amina8917-Oct-10 3:35 
GeneralRe: Update all gridview rows at once Pin
amina8921-Oct-10 0:04
amina8921-Oct-10 0:04 
GeneralRe: Update all gridview rows at once Pin
amina8922-Oct-10 15:24
amina8922-Oct-10 15:24 
QuestionPanel Control Pin
Thanusree Duth11-Oct-10 20:58
Thanusree Duth11-Oct-10 20:58 
AnswerRe: Panel Control Pin
Brij11-Oct-10 22:05
mentorBrij11-Oct-10 22:05 
AnswerRe: Panel Control Pin
Tej Aj12-Oct-10 21:35
Tej Aj12-Oct-10 21:35 
Here is the solution to ur problem

        function maximizePanel()
        {
            var screenHeight = window.screen.availHeight;
            var screenWidth = window.screen.availWidth;
            document.getElementById('<% =Panel1.ClientID %>').style.width = screenWidth - 10;
            document.getElementById('<% =Panel1.ClientID %>').style.height = screenHeight - 10;
        }    
<body onload="maximizePanel()">
    <form id="form1" runat="server">
    <div>
        <asp:Panel ID="Panel1" runat="server" Height="50px" Width="125px" BorderWidth="2">
        </asp:Panel>
    
    </div>
    </form>
</body>
</html>



Tej Aj,
http://opexsolution.com/forum/

Fan of:
http://www.abtstudioz.com/
QuestionAUTOCOMPLETE Pin
padmanabhan N11-Oct-10 20:37
padmanabhan N11-Oct-10 20:37 
AnswerRe: AUTOCOMPLETE Pin
Pete O'Hanlon11-Oct-10 23:57
mvePete O'Hanlon11-Oct-10 23:57 
AnswerRe: AUTOCOMPLETE Pin
Steve Echols13-Oct-10 7:05
Steve Echols13-Oct-10 7:05 
GeneralRe: AUTOCOMPLETE Pin
padmanabhan N14-Oct-10 0:20
padmanabhan N14-Oct-10 0:20 
GeneralRe: AUTOCOMPLETE Pin
Steve Echols14-Oct-10 16:46
Steve Echols14-Oct-10 16:46 
QuestionDataPager with ListView Pin
Łukasz Nowakowski11-Oct-10 3:48
Łukasz Nowakowski11-Oct-10 3:48 
QuestionPrinting question Pin
Abrojus11-Oct-10 2:56
Abrojus11-Oct-10 2:56 
QuestionMerge between VB & C# [modified] Pin
Abdullah S. Abdelhay11-Oct-10 1:53
Abdullah S. Abdelhay11-Oct-10 1:53 
AnswerRe: Merge between VB & C# Pin
Brij11-Oct-10 2:40
mentorBrij11-Oct-10 2:40 
AnswerRe: Merge between VB & C# Pin
Abhijit Jana11-Oct-10 7:59
professionalAbhijit Jana11-Oct-10 7:59 
GeneralRe: Merge between VB & C# [WORKED] Pin
Abdullah S. Abdelhay12-Oct-10 23:59
Abdullah S. Abdelhay12-Oct-10 23:59 
AnswerRe: Merge between VB & C# (WORKED) [modified] Pin
Abdullah S. Abdelhay11-Oct-10 23:11
Abdullah S. Abdelhay11-Oct-10 23:11 
GeneralRe: Merge between VB & C# (WORKED) Pin
Ankur\m/12-Oct-10 21:50
professionalAnkur\m/12-Oct-10 21:50 
Questionexception handling in BLL? Pin
srisairam10-Oct-10 21:13
srisairam10-Oct-10 21:13 
AnswerRe: exception handling in BLL? Pin
Eduard Keilholz10-Oct-10 21:27
Eduard Keilholz10-Oct-10 21:27 
GeneralRe: exception handling in BLL? Pin
srisairam11-Oct-10 0:01
srisairam11-Oct-10 0:01 
AnswerRe: exception handling in BLL? Pin
Not Active11-Oct-10 2:42
mentorNot Active11-Oct-10 2:42 

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.