Click here to Skip to main content
15,897,371 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionWhen my application idle for 20 minutes then they redirect to login page Pin
kuldeep10972-May-14 23:13
kuldeep10972-May-14 23:13 
AnswerRe: When my application idle for 20 minutes then they redirect to login page Pin
Ali Al Omairi(Abu AlHassan)4-May-14 1:00
professionalAli Al Omairi(Abu AlHassan)4-May-14 1:00 
QuestionCreate a comment system Pin
BL@CK H@CK$R2-May-14 17:08
BL@CK H@CK$R2-May-14 17:08 
AnswerRe: Create a comment system Pin
Peter Leow2-May-14 17:53
professionalPeter Leow2-May-14 17:53 
AnswerRe: Create a comment system Pin
BL@CK H@CK$R3-May-14 7:31
BL@CK H@CK$R3-May-14 7:31 
Questionajax control toolkit - windows server 2008 r2 Pin
Stein The Ruler2-May-14 9:47
Stein The Ruler2-May-14 9:47 
QuestionGood day Pin
Jebz19931-May-14 0:26
Jebz19931-May-14 0:26 
QuestionReportViewer with Parameter Pin
Member 1057920230-Apr-14 8:47
Member 1057920230-Apr-14 8:47 
Hi, I am trying to create a report in Asp.net using report viewer and passing parameters. I have created the report (.rdlc) with Dataset with parameter that points to a function in DomainService. The function returns IQuerable from SQL server. I use that report in an .aspx page. When I launch the page it repeats the first record 5 times (there should be 5 different records). I'm sure I am missing something. Any ideas? Thank you!

here is html for page...
ASP.NET
<body>
    <form id="form1" runat="server">
    <div>
        <rsweb:ReportViewer ID="ReportViewer1" runat="server" Font-Names="Verdana" 
            Font-Size="8pt" InteractiveDeviceInfos="(Collection)" 
            WaitMessageFont-Names="Verdana" WaitMessageFont-Size="14pt" Width="650px">
            <LocalReport ReportPath="Construction\Reports\Test1.rdlc">
            </LocalReport>
        </rsweb:ReportViewer>
        <asp:ScriptManager ID="ScriptManager1" runat="server">
        </asp:ScriptManager>
    
    </div>
    </form>
</body
>

here is vb.net code behind page...
VB
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
       If Not IsPostBack Then
           Dim projectjey As Integer = Request.QueryString("projectkey")
           ReportViewer1.LocalReport.DataSources.Add(New ReportDataSource("DataSet1", New ENGINEERSDevEntities1().spCNSTBidProposalReportByProjectKey(projectjey)))
           Dim rptParameters As New ReportParameter()
           rptParameters.Name = "projectkey"
           rptParameters.Values.Add(projectjey)
           ReportViewer1.LocalReport.SetParameters(rptParameters)
           ReportViewer1.LocalReport.Refresh()
       End If
   End Sub

AnswerRe: ReportViewer with Parameter Pin
Member 105792021-May-14 7:07
Member 105792021-May-14 7:07 
Questionjoin on linq relative to checklistbos Pin
Member 1044233028-Apr-14 20:00
Member 1044233028-Apr-14 20:00 
AnswerRe: join on linq relative to checklistbos Pin
Praneet Nadkar7-May-14 19:54
Praneet Nadkar7-May-14 19:54 
QuestionThere is no row at position 0 in login page Pin
Jignesh Patel27-Apr-14 2:21
Jignesh Patel27-Apr-14 2:21 
AnswerRe: There is no row at position 0 in login page Pin
Richard Deeming28-Apr-14 2:11
mveRichard Deeming28-Apr-14 2:11 
Questionurl-rewrite complete asp.net application i want www.myurl.com/Profiles/sample.aspx?id=profilename to be like this www.myurl.com/profilename Pin
pramodgorityala25-Apr-14 8:45
pramodgorityala25-Apr-14 8:45 
AnswerRe: url-rewrite complete asp.net application i want www.myurl.com/Profiles/sample.aspx?id=profilename to be like this www.myurl.com/profilename Pin
Anurag Gandhi25-Apr-14 17:45
professionalAnurag Gandhi25-Apr-14 17:45 
GeneralRe: url-rewrite complete asp.net application i want www.myurl.com/Profiles/sample.aspx?id=profilename to be like this www.myurl.com/profilename Pin
pramodgorityala15-May-14 4:46
pramodgorityala15-May-14 4:46 
GeneralRe: url-rewrite complete asp.net application i want www.myurl.com/Profiles/sample.aspx?id=profilename to be like this www.myurl.com/profilename Pin
Anurag Gandhi16-May-14 4:09
professionalAnurag Gandhi16-May-14 4:09 
AnswerRe: url-rewrite complete asp.net application i want www.myurl.com/Profiles/sample.aspx?id=profilename to be like this www.myurl.com/profilename Pin
Dnyaneshwar@Pune27-Apr-14 23:50
Dnyaneshwar@Pune27-Apr-14 23:50 
QuestionFailure sending mail. System.Net.WebException: Unable to connect to the remote server ---> System.Net.Sockets.SocketException: A connection attempt failed because the connected party did not properly respond after a period of time, or established con Pin
Member 1040837325-Apr-14 6:09
Member 1040837325-Apr-14 6:09 
AnswerRe: Failure sending mail. System.Net.WebException: Unable to connect to the remote server ---> System.Net.Sockets.SocketException: A connection attempt failed because the connected party did not properly respond after a period of time, or established Pin
DamithSL26-Apr-14 19:05
professionalDamithSL26-Apr-14 19:05 
GeneralRe: Failure sending mail. System.Net.WebException: Unable to connect to the remote server ---> System.Net.Sockets.SocketException: A connection attempt failed because the connected party did not properly respond after a period of time, or established Pin
Dnyaneshwar@Pune28-Apr-14 0:04
Dnyaneshwar@Pune28-Apr-14 0:04 
QuestionTable doubt Pin
Hari-CodeBlogger24-Apr-14 20:14
Hari-CodeBlogger24-Apr-14 20:14 
AnswerRe: Table doubt Pin
Tom Marvolo Riddle24-Apr-14 21:03
professionalTom Marvolo Riddle24-Apr-14 21:03 
GeneralRe: Table doubt Pin
Hari-CodeBlogger25-Apr-14 1:20
Hari-CodeBlogger25-Apr-14 1:20 
GeneralRe: Table doubt Pin
Hari-CodeBlogger25-Apr-14 18:37
Hari-CodeBlogger25-Apr-14 18:37 

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.