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

ASP.NET

 
QuestionProblem in RowEditing of GridView [modified] Pin
suzzain8-May-09 4:24
suzzain8-May-09 4:24 
QuestionDisplaying a Word file Pin
dptalt8-May-09 4:20
dptalt8-May-09 4:20 
AnswerUse Javascript to Open MS-Word Pin
David Mujica8-May-09 4:38
David Mujica8-May-09 4:38 
GeneralRe: Use Javascript to Open MS-Word Pin
dptalt8-May-09 5:18
dptalt8-May-09 5:18 
GeneralRe: Use Javascript to Open MS-Word Pin
David Mujica8-May-09 6:00
David Mujica8-May-09 6:00 
GeneralRe: Use Javascript to Open MS-Word Pin
dptalt8-May-09 6:57
dptalt8-May-09 6:57 
GeneralRe: Use Javascript to Open MS-Word Pin
David Mujica8-May-09 9:42
David Mujica8-May-09 9:42 
QuestionSame look for the ReportViewer control on different browsers Pin
0x000013378-May-09 3:57
0x000013378-May-09 3:57 
Hey guys,

I already search the web but I couldn't find a solution for my display problems with the ReportViewer control in different browsers.

Heh okay! I already figured out, that some buttons like printing and search are only available @ IE because of the activex functions of the IE but I don't care about those buttons, all I want is the same view for the report preview @ firefox and IE.

My current code:

<br />
<%@ Page Title="" Language="VB" MasterPageFile="~/Shared/TableDefaultMaster.master" AutoEventWireup="false" CodeFile="Auswertung.aspx.vb" Inherits="Statistik_Auswertung" %><br />
<br />
<%@ Register Assembly="Microsoft.ReportViewer.WebForms, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"<br />
    Namespace="Microsoft.Reporting.WebForms" TagPrefix="rsweb" %><br />
<br />
<asp:Content ID="content" ContentPlaceHolderID="DefaultContent" Runat="Server"><br />
<br />
<table style="vertical-align: bottom; border-width: 0px; margin-top: 0px; <br />
   margin-bottom: 0px; width: 100%; height: 100%; padding: 0px,0px,0px,0px;" <br />
   cellspacing="0" cellpadding="0"><br />
    <tr><br />
        <td><br />
            <h4>Auswertung</h4><br />
        </td><br />
    </tr><br />
    <tr><br />
        <td><br />
            <div style="border-top: black 1px solid; <br />
                background-color: #ece9d8; border-bottom-width: 1px; <br />
                border-bottom-color: #d4d0c8; padding-bottom: 10px;"><br />
                <asp:TextBox ID="txtInt" runat="server" Visible="false"></asp:TextBox><br />
            </div><br />
       </td><br />
    </tr><br />
    <tr><br />
        <td style="height: 350px;width: 100%"><br />
            <rsweb:ReportViewer ID="ReportViewer1" runat="server" Font-Names="Verdana" <br />
        Font-Size="8pt" Height="100%" Width="100%" BackColor="White"><br />
        <LocalReport ReportPath="Statistik\reports\Auswertung.rdlc"><br />
            <DataSources><br />
                <rsweb:ReportDataSource DataSourceId="ObjectDataSource1" <br />
                    Name="Auswertung_USP_Auswertung" /><br />
            </DataSources><br />
        </LocalReport><br />
    </rsweb:ReportViewer><br />
    <asp:ObjectDataSource ID="ObjectDataSource1" runat="server" <br />
        OldValuesParameterFormatString="original_{0}" SelectMethod="GetData" <br />
        TypeName="AuswertungTableAdapters.USP_AuswertungTableAdapter"><br />
        <SelectParameters><br />
            <asp:ControlParameter ControlID="txtInt" DbType="Int32" Name="Int" <br />
                PropertyName="Text" /><br />
        </SelectParameters><br />
    </asp:ObjectDataSource><br />
        </td><br />
    </tr><br />
</table>    <br />
</asp:Content><br />


IE: fine view
FF: just a small crapy box

Some1 maybe knows a way to make the view for the control be the same in IE and FF?

THANKS,

Kind Regards,


0x00001337
Questionvalidation controls [modified] Pin
sritha8-May-09 2:50
sritha8-May-09 2:50 
AnswerRe: validation controls Pin
Vimalsoft(Pty) Ltd8-May-09 3:27
professionalVimalsoft(Pty) Ltd8-May-09 3:27 
AnswerRe: validation controls Pin
RyanMorris8-May-09 3:33
RyanMorris8-May-09 3:33 
Questiongetting page data on different page of different website....!!! Pin
shail nautiyal8-May-09 2:42
shail nautiyal8-May-09 2:42 
AnswerRe: getting page data on different page of different website....!!! Pin
Abhijit Jana8-May-09 3:13
professionalAbhijit Jana8-May-09 3:13 
QuestionHow can i know whether the string is bold or italic or normal Pin
Satish - Developer8-May-09 1:28
Satish - Developer8-May-09 1:28 
AnswerRe: How can i know whether the string is bold or italic or normal Pin
Abhijit Jana8-May-09 1:44
professionalAbhijit Jana8-May-09 1:44 
GeneralRe: How can i know whether the string is bold or italic or normal Pin
Satish - Developer8-May-09 1:53
Satish - Developer8-May-09 1:53 
GeneralRe: How can i know whether the string is bold or italic or normal Pin
Abhijit Jana8-May-09 2:39
professionalAbhijit Jana8-May-09 2:39 
GeneralRe: How can i know whether the string is bold or italic or normal Pin
Satish - Developer8-May-09 2:41
Satish - Developer8-May-09 2:41 
GeneralRe: How can i know whether the string is bold or italic or normal Pin
Abhijit Jana8-May-09 2:53
professionalAbhijit Jana8-May-09 2:53 
Questionstore a value in class file and get all other class in c# net asp.net Pin
vnsraj8-May-09 1:17
vnsraj8-May-09 1:17 
AnswerRe: store a value in class file and get all other class in c# net asp.net [modified] Pin
Abhijit Jana8-May-09 1:27
professionalAbhijit Jana8-May-09 1:27 
Questiongridview Pin
trimandir prajapati8-May-09 1:10
trimandir prajapati8-May-09 1:10 
AnswerRe: gridview Pin
Abhijit Jana8-May-09 1:22
professionalAbhijit Jana8-May-09 1:22 
Questionreading data from serial port Pin
nikhil12348-May-09 0:40
nikhil12348-May-09 0:40 
AnswerRe: reading data from serial port Pin
Abhijit Jana8-May-09 1:02
professionalAbhijit Jana8-May-09 1:02 

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.