Web Forms :: Passing Parameter From One Page To Other

Mar 17, 2011

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%'

what is solution to this?

View 7 Replies


Similar Messages:

Web Forms :: Passing Control Parameter Values From One Aspx Page To A Second

Apr 7, 2010

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.

View 3 Replies

Forms Data Controls :: How To Passing Dropdownlist Value As Parameter To Another Page

Nov 25, 2010

how to passing dropdownlist value as parameter to another page?

View 3 Replies

Web Forms :: Call Popup With Passing Parameter Without Page Refresh

Jun 15, 2010

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

[Code]....

View 2 Replies

Passing Page Title Through Parameter

Aug 23, 2010

I am new to ASP.NET, and was wondering how to pass a Page title through a parameter. In classic ASP I could just use something like:

<title><%=Pagetitle%></title> but I cannot seem to get this to work in ASP.NET.

View 3 Replies

MVC :: Passing Parameter From One Page To Another Using Href

Jan 28, 2010

How to pass parameters from one page to another pages using a href.

<a href="#">

View 3 Replies

Passing Parameter To Page Doesn't Work

Apr 23, 2010

The follwoing statement does nto work.

document.all.oFrame.src =
"/mmm/xyz/hello.aspx?ConceptID="&vConceptID&"&ShortName="&vShortName

I have given alert.

alert(
"/mmm/xyz/hello.aspx?ConceptID="&vConceptID&"&ShortName="&vShortName)

IT GIVES 0 AS OUTPUT.

View 4 Replies

DataSource Controls :: Passing Parameter From Web Page

Mar 16, 2010

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?

View 6 Replies

Passing Parameter From Page To Flex Application

Apr 22, 2010

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.

View 2 Replies

Crystal Reports :: Parameter Passing From Previous Page?

Nov 26, 2010

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;
}

View 4 Replies

Web Forms :: Passing Parameter While Routing?

Feb 12, 2011

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.

View 5 Replies

Web Forms :: Parameter Passing Between Web Pages?

Jan 20, 2011

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.

[Code]....

View 3 Replies

Web Forms :: Passing Eval() As Parameter In Javascript

Oct 22, 2010

I have got a drop down list in a gridview and would like to pass eval() as parameter to javascript..

<asp:DropDownList ID="ddl_grprowcutter" runat="server" onchange='<%# "fn_ddl(" &#43;Eval("Order_No") &#43; " );" %>'

View 15 Replies

Web Forms :: Passing Through Query String Parameter?

Jan 20, 2010

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.

View 11 Replies

Web Forms :: Can't Add Item To Different Dropdownlist By Passing Different Parameter?

Jan 12, 2010

call the method by passing parameter:

add_ddl_item_by_dt((DataTable)Session["dt_1"],ddl_1);
add_ddl_item_by_dt((DataTable)Session["dt_2"],ddl_2);
protected void add_ddl_item_by_dt(DataTable dt,DropDownList ddl)
{
for (int i = 0; i < dt.Rows.Count; i++)
{
ddl.Items.Add(dt.Rows[i]["Field_1"].ToString());
}
}

why i cannot use the above method to add item to different dropdownlist by passing different parameter?

View 3 Replies

Forms Data Controls :: Passing Two Parameter In Javascript

Mar 26, 2011

i am passing two parameter in javascript and open popup window.... but geeting mid value "undefined" here is my code:

<asp:TemplateField HeaderText="comments">
<ItemTemplate>
<a href="javascript:replycomments('<%# Eval("projectid")%>'),('<%# Eval("milestoneserial")%>')">Reply comments</a>
</ItemTemplate>
</asp:TemplateField>

and

function replycomments(id,mid)
{
window.open("replymilestone.aspx?id="+id+"&mid="+mid,"mypage","width=400,height=500,scrollbars=0,menu=0","");
}

this is working fine if i am passing single value like:

<asp:TemplateField HeaderText="comments">
<ItemTemplate>
<a href="javascript:replycomments('<%# Eval("projectid")%>')">Reply comments</a>
</ItemTemplate>
</asp:TemplateField>

and

function replycomments(id)
{
window.open("replymilestone.aspx?id="+id,"mypage","width=400,height=500,scrollbars=0,menu=0","");
}

View 1 Replies

Web Forms :: Passing Parameter To CustomValidator On Client Side?

Mar 16, 2010

i am using data grids on my web page, and on edititemtemplate i have custom validators for the drop down list ( ddl), most of them they do the same job which is to test if the user did select from the ddl or not.

i want to point all of these drop down lists to the same function and pass to this function the ddl.ClientID

how can i do this?

i tried this but it didn't work with me

[Code]....
[Code]....
[Code]....

View 2 Replies

Forms Data Controls :: Passing Container.dataitem As Method Parameter?

Apr 26, 2010

input type=..... value="<%= ISO3166CountryList.GetCountryByCode("IE", CurrentLocale).Name %>" />

I'm looking to replace the hardcoded IE with something like

<%#(Container.DataItem as PhoneNumber).ISO%>

No variations of what I've tried worked. How can I get a databinded value when within a <%= code block? Do I need to use an intermediary variable?

View 2 Replies

MVC :: Passing Id In Parameter?

Aug 26, 2010

I am using url in my mvc application like /product/edit/5, should change it because users can

change id parameter and access different product as this Id directly refer to Id in product table, I have validation there for user to access product.

should I continue with it or should I change it as application has many users

View 2 Replies

Forms Data Controls :: Passing Dynamic Value To Detail View Of Grid Through Object Selecting Parameter

Oct 4, 2010

Passing dynamic value to Detail view of grid through object selecting parameter

View 4 Replies

Passing A Parameter To Stored Procedure In C#?

Mar 23, 2011

When I try the following:

[Code]....

I get an error saying No overload for Add method takes 2 arguments. HOw would i pass the PaycheckID in then as a paramter?

View 2 Replies

Passing A Parameter To Action Method?

Sep 8, 2010

public ActionResult RenderMyThing(IList<String> strings)
{
return View("RenderMyView");
}

How do I pass in strings?

routes.MapRoute("MyRoute", "RenderMyThing.aspx", new { controller = "My", action = "RenderMyThing" });

Is there a way I could pass in strings here?

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?

View 1 Replies

SQL Server :: Passing One Input Parameter To The SP?

Sep 7, 2010

im passing one input parameter to the SP, based on that parameter i have written the code like below create procedure SP1(@inpName varchar(10))

declare @where varchar(20);
if @inpName = 'ABCD'
@where = 'A';
else if @inpName = '1234'
@where = '1';
else if @inpName = 'AB12'
@where = 'A,B';

SELECT * FROM TABLE1 WHERE COLUMN1 IN(@where);

Now the above query was fine if its 'ABCD' or '1234', but if its 'AB12' then query failed.
How to resolve this issue.?

View 2 Replies

MVC :: Passing A List As A Parameter With BeginForm()?

Mar 2, 2011

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.

View 3 Replies

Passing Parameter From One User Control To Another User Control In An Aspx Page?

Jun 3, 2010

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?

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved