I am opening one page and sending parameter from one asppage to other using winodow.open method
var retVal = window.showModalDialog("PopupWindow.aspx?SQL=" + document.getElementById(SUCName.concat("txtRetVal")).value + "&Curr_Date=" + d , null,"dialogLeft=" + XPos + ";dialogTop=" + YPos + ";center=no;status=no;dialogHeight:430px;dialogWidth:420px;resizable=no;help=no"); in my document.getElementById(SUCName.concat("txtRetVal")).value contains: SELECT ResourceID, ResourceName FROM ResourceMaster WHERE AREA LIKE '%CALICUT%'
but when it access this on PopupWindow.aspx using Request.QueryString("SQL") then first 3 character in LIKE clause gets convert to some ascii character and my query becomes
SELECT ResourceID, ResourceName FROM ResourceMaster WHERE AREA LIKE '�LICUT%'
I'm experimenting with an example of code that I found in a book. Here is the HTML:
[Code]....
This looks fine in DesignView.
Here is the VB:
[Code]....
The page loads when I hit F5. I enter initials for a state and click the button and get this error message: 'The connectionstring property has not been initialized'. This line is green:
objConnection.Open()
I'm highly confident that the connection srting is correct. Do I need to Dim another variable or something?
I have an asp.net page where I get the user_id from who's logged in. Now I need to pass this user_id to a flex application that runs in an asp.net page as a .swf. How can I get this user_id in a variable in my flex application. Or what is the best way to get the user_id into flex.
I have 2 asp.net pages first page (PaySlipForm.aspx) contains ui elements for getting values from user, second page shows the report depending on the parameters passed from first page. The problem is first time the report shows correctly but when I go back on first page by clicking the back button of browser and changes the selection the report is shown empty only labels are shown.
First Page PaySlipForm.aspx <asp:DropDownList ID="ddlAllEmployees" runat="server" style="margin-left: 7px" Height="20px" Width="174px"> </asp:DropDownList> <br /> <asp:DropDownList ID="ddlMonth" runat="server" Height="23px"> </asp:DropDownList> <br /> <asp:DropDownList ID="ddlYear" runat="server" style="margin-left: 18px" Height="23px" Width="77px"> <asp:ListItem>2010</asp:ListItem> <asp:ListItem>2011</asp:ListItem> <asp:ListItem>2012</asp:ListItem> </asp:DropDownList> <br /> <asp:Button ID="btnShow" runat="server" Text="Show" PostBackUrl="~/Reports/PaySlipViewForm.aspx"/> Second page is PaySlipViewForm.aspx that has the code <CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server" AutoDataBind="True" EnableDatabaseLogonPrompt="False" Height="50px" ReportSourceID="CrystalReportSource1" Width="350px" /> <CR:CrystalReportSource ID="CrystalReportSource1" runat="server"> <Report FileName="../Reports/PaySlip.rpt"> </Report> </CR:CrystalReportSource> --------------------- if (!IsPostBack) { int employeeID = Convert.ToInt32((((DropDownList)Page.PreviousPage.FindControl("ddlAllEmployees")).SelectedValue)); int monthID = Convert.ToInt32((((DropDownList)Page.PreviousPage.FindControl("ddlMonth")).SelectedValue)); int year = Convert.ToInt32((((DropDownList)Page.PreviousPage.FindControl("ddlYear")).SelectedValue)); CrystalReportViewer1.SelectionFormula = "{Payroll.EmployeeID} = " + employeeID + " And {Payroll.Month} = " + monthID + " And {Payroll.Year} = " + year; }
I have a web form that has drop down controls. These controls are data bound to a database. Now, I would like the results of the selected values to be shown on a new aspx page in a gridview or detailsview.
I am using VS 2005 (asp.net 2.0). Currently i am facing a problem everytime onclick button call the popup it will refresh the page. Below is my code, Any suggestion or better idea can do it without refresh
Secondly, how does ASP.NET MVC know that action is my action, and controller is my controller. Like I saw this in samples, and it does work, but isn't it just an anonymous object with no type?
i am doign url routing and it is working fine with url like followwing:-when ever i click on HOME/SEARCH i get redirected to ~/SEARCH1.aspx page.
[Code]....
BUT IF I REPLACE THE ABOVE URL WITH "~/SEARCH1.ASPX?ID=2"I GOT FOLLOWING ERROR:'~/search1.aspx?id=2' is not a valid virtual path. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.Exception Details: System.Web.HttpException: '~/search1.aspx?id=2' is not a valid virtual path.i have to pass id to the search1.aspx page.what is the way out.
I am using HTML.BeginForm to create a form on my page. I need to pass a list of classes I created as a parameter. It's done like this:
<% using ( Html.BeginForm("DisplayCompanions", "CCDReviewController", new { CompanionList = Model.CompanionList} ) ) { %>
When I click a "Continue" button (enclosed in the form tag), the "DisplayCompanions" method on my Controller ("CCDReviewController") should be called, as I've set a breakpoint on it. But it's not being called.
Note that Model.CompanionList is a generic list of classes that I created.
Developing in C#.I have a home page and couple of other aspx pages.In the home page in a summary box I have names of projects. When the user clcks on a given project I will pass the projectID to the Project.aspx page.I then retrieve this ProjectID and display the project details in text boxes. Code is given below.
have two user controls on one aspx page. UC1 has a grid which contains a link button column which user clicks. Based on the value of clicked cell, I need to show some data into UC2.How do I pass data from UC1 to UC2? How do I invoke a function of UC2 from UC1?
I tried to pass a string value into a JavaScript function like below: <%= "'" + prop.property_description + "'") %>) But it does not seems to be the best option, is there a better way to do the above without concatenate the string values with "'"?
how to pass through a query string parameter of an assignment id and then checking and validating this as a number and displaying the information returned on screen. At present I have code which displays the information on screen but this is by entering in the assignment id and by triggering the button click event, I've shown the code for this below:
.aspx <div> <b>Current Assignment</b> <br /> <asp:TextBox runat="server" ID="txtAssignmentID"></asp:TextBox> <asp:Button runat="server" Text="Get Assignment" /> <br /> <b>Date Started:</b> <asp:Label runat="server" ID="lblAssignmentStart"></asp:Label> <br /> <b>Status:</b> <asp:Label runat="server"></asp:Label> <br /> <b>Current Achievement Level:</b> <asp:Label runat="server" ID="lblAssignmentLevel"></asp:Label> <br /> <b>Date Last Calculated:</b> <asp:Label runat="server" ID="lblAssignmentCalcDate"></asp:Label> <br /> </div> .cs protected void cmdGetAssignment_Click(object sender, EventArgs e) { //Check the assignmentID is an integer int AssignmentID = 0; try { AssignmentID = TypeConv.CInt(txtAssignmentID.Text); } catch { } if (AssignmenttID > 0) { //Create new TCAAssignment object by passing the ID TCA Assignment Current Assignment = abc.TCA Assignment (AssignmentID); lblAssignmentStart.Text = Current Assignment.dDateCreated.ToString(); lblAssignmentStatus.Text = CurrentAssignment.rTCAAssignmentStatus.dDescription; if (!CurrentAssignment.dTCAAchievementLevel.IsNull) { lblAssignmentLevel.Text = CurrentAssignment.rTCAAchievementLevel.dDescription; } lblAssignmentCalcDate.Text = CurrentAssignment.dAchievementDate.ToString(); } }
Code example passing through a query string parameter of an assignment id would be great.
I'm working on Visual Studio 2008 and SQL Server 2008, language C#
Multiple parameter passing in crystal report in asp.net. I have two parameter @accountnumber and @customerid at time. I can only pass one parameter to my.