Web Forms :: URL Parameters Change Dynamically?

Jul 20, 2010

I'm using jQuery thick box and I want to chaneg some url parameters dynamically. How can I do that.

[Code]....

I want to change the x and y values dynamically. I've try ths,

[Code]....

View 3 Replies


Similar Messages:

Web Forms :: Passing Stored Procedure Parameters Dynamically Through ArrayList Values

Mar 8, 2012

I want to passed stored procedure parameters from crystal report to pass those parameter dynamically by arraylist because user will pass parameters by using data driven web pages (can be different reports with different parameter). how can i pass through parameter array lists to crystal report setreportparameters fields.

My code;

public void ConfigureReports(ArrayList valuesLists,ArrayList parameterLists)  {  
rptReportViewer.RefreshReport();  
DataBaseHelper.myReportConnectionInfo = new ConnectionInfo();
DataBaseHelper.defineConnection = null; 

[Code] ...

View 1 Replies

Web Forms :: Dynamically Filter The Parameter's Values On A Popup Window Based On Other Parameters Selection

Apr 30, 2010

I have a pop up window which contains a listbox. The items on the listbox should be filtered when it is opened based on the other parameters on the parent page. I am using session to pass the values from a page to another.

View 4 Replies

Forms Data Controls :: Dynamic Gridview With Dropdownlist / Dynamically Set The List Values Based On Parameters (of The Row They Are On)

May 28, 2010

I'm new to web dev and c# so please bare with me. I am trying to create a dynamic gridview in a web form for users to to answer questions with (code below).

The dificulty im having is that i am nesting a dropdwonlist in the gridview and want to be able to dynamically set the list values based on parameters (of the row they are on). These values are in the main dataset for the gridview as each row represents a questionid and question text and then a ddl for the criteria...

I just don't know how to set the values for the dropdown all the code so far is below... just need to be able to populate the dropdowns with the relevant values.

I have created a stored proc to return the different criteria based on the questionid and questionGroupid which is the dataset that populates the other fields in the gridview: dbo.usp_QuestionCriteria @QuestionGroupId, @QuestionId

I have added this as a tableadapter called criteriaTableAdapter in a xsd file as well using the wizard... not sure if this is the right option though or just use the same method as i have for the other stored procedure as in the code below:

[CODE

]using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["Sql"].ConnectionString);
con.Open();
SqlCommand com = new SqlCommand("usp_QuestionGroupDS", con);
com.CommandType = CommandType.StoredProcedure;
SqlDataAdapter ada = new SqlDataAdapter(com);
DataSet ds = new DataSet();
ada.Fill(ds);
for (int i = 0; i < ds.Tables.Count; i++)
{
if (ds.Tables[i].Rows.Count > 0)
{
GridView gvDynamicQuestion = new GridView();
gvDynamicQuestion.Width = Unit.Pixel(700);
gvDynamicQuestion.BorderWidth = Unit.Pixel(0);
gvDynamicQuestion.Caption = "<div id="nifty" class="QuestionGroup"> <b class="rtop"><b class="r1"></b><b class="r2"></b><b class="r3"></b><b class="r4"></b></b>" + ds.Tables[i].Rows[0]["Category"].ToString() + " Questions<b class="rbottom"><b
class="r4"></b><b class="r3"></b><b class="r2"></b><b class="r1"></b></b></div>";
gvDynamicQuestion.AutoGenerateColumns = false;
gvDynamicQuestion.ShowFooter = true;
TemplateField tf = null;
tf = new TemplateField();
tf.HeaderTemplate = new DynamicGridViewTextTemplate("QuestionId", DataControlRowType.Header);
tf.ItemTemplate = new DynamicGridViewTextTemplate("QuestionId", DataControlRowType.DataRow);
tf.FooterTemplate = new DynamicGridViewTextTemplate(DataControlRowType.Footer, ds.Tables[i].Rows.Count);
gvDynamicQuestion.Columns.Add(tf);
tf = new TemplateField();
tf.HeaderTemplate = new DynamicGridViewTextTemplate("Question", DataControlRowType.Header);
tf.ItemTemplate = new DynamicGridViewTextTemplate("Question", DataControlRowType.DataRow);
gvDynamicQuestion.Columns.Add(tf);
tf = new TemplateField();
tf.HeaderText = "Criteria";
tf.HeaderTemplate = new DynamicGridViewTextTemplate("Criteria", DataControlRowType.Header);
tf.ItemTemplate = new DynamicGridViewDDLTemplate();
gvDynamicQuestion.Columns.Add(tf);
////tf = new TemplateField();
////tf.HeaderText = "Criteria";
////tf.ItemTemplate = new DynamicGridViewDDLTemplate();
////gvDynamicQuestion.Columns.Add(tf);
gvDynamicQuestion.DataSource = ds.Tables[i];
gvDynamicQuestion.DataBind();
phDynamicGridHolder.Controls.Add(gvDynamicQuestion);
}
}
}
protected void DynamicGrid_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.Footer)
{
//
}
}
}
public class DynamicGridViewTextTemplate : ITemplate
{
string _ColName;
DataControlRowType _rowType;
int _Count;
public DynamicGridViewTextTemplate(string ColName, DataControlRowType RowType)
{
_ColName = ColName;
_rowType = RowType;
}
public DynamicGridViewTextTemplate(DataControlRowType RowType, int QuestionCount)
{
_rowType = RowType;
_Count = QuestionCount;
}
public void InstantiateIn(System.Web.UI.Control container)
{
switch (_rowType)
{
case DataControlRowType.Header:
Literal lc = new Literal();
lc.Text = "<b>" + _ColName + "</b>";
container.Controls.Add(lc);
break;
case DataControlRowType.DataRow:
Label lbl = new Label();
lbl.DataBinding += new EventHandler(this.lbl_DataBind);
container.Controls.Add(lbl);
break;
case DataControlRowType.Footer:
Literal flc = new Literal();
flc.Text = "<b>Total No of Questions:" + _Count + "</b>";
container.Controls.Add(flc);
break;
default:
break;
}
}
private void lbl_DataBind(Object sender, EventArgs e)
{
Label lbl = (Label)sender;
GridViewRow row = (GridViewRow)lbl.NamingContainer;
lbl.Text =DataBinder.Eval(row.DataItem, _ColName).ToString();
}
}
public class DynamicGridViewDDLTemplate : ITemplate
{
// Implementation of ITemplate
public void InstantiateIn(System.Web.UI.Control container)
{
// Create a DDL
DropDownList ddl = new DropDownList();
//Attach method to delegate
ddl.DataBinding += new System.EventHandler(this.ddl_DataBind);
container.Controls.Add(ddl);
}
//Method that responds to the DataBinding event
private void ddl_DataBind(object sender, System.EventArgs e)
{
//DropDownList ddl = (DropDownList)sender;
//DataGridItem container = (DataGridItem)ddl.NamingContainer;
//ddl.Data.Checked = [Data binding expression];
}
}

[/CODE]

View 7 Replies

Dynamically Passing Parameters From ASPX Host

Aug 5, 2010

I am looking for someone to provide guidance as to whether the following solution is the prescribed way of going about this. Yesterday I started working on a problem that, at first blush, seemed pretty simple and straightforward. I need to pass a few parameters from an ASPX code-behind, which hosts a Silverlight object tag, to the code-behind of one, or more, of the Silverlight user controls within the hosted Silverlight application. So, after doing some research, this is the basic solution I developed.

I found out that an attribute can be added to the object tag called initParams, a comma delimited list of parameter names and values can be added to this attribute. Like so.

<object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="100%" height="100%">
<param name="source" value="ClientBin/SampleApplication.xap"/>
<param name="onError" value="onSilverlightError" />
<param name="background" value="white" />
<param name="minRuntimeVersion" value="3.0.40624.0" />
<param name="autoUpgrade" value="true" />
<param name="initParams" value='DealerId=17' />
</object>

This is fine, except that the DealerId parameter is basically hard-coded in the object tag, not real useful. The next thing that I did was replace this object tag with a literal control, and set the text of the literal control within the page's code-behind to the value of a StringBuilder (where I built up the full object tag along with dynamically adding the correct DealerId value). In the following example, the DealerId is hard-coded, but you get the idea.

var sb = new StringBuilder();
sb.Append(@"<object data=""data:application/x-silverlight-2,"" type=""application/x-silverlight-2"" width=""90%"" height=""80%"">");
sb.Append(@"<param name=""source"" value=""ClientBin/Ascend.SilverlightViewer.xap""/>");
sb.Append(@"<param name=""onError"" value=""onSilverlightError"" />");
sb.Append(@"<param name=""background"" value=""white"" />");
sb.Append(@"<param name=""minRuntimeVersion"" value=""3.0.40624.0"" />");
sb.Append(@"<param name=""autoUpgrade"" value=""true"" />");
sb.Append(@"<param name=""initParams"" value='");
sb.Append(@"ServiceUrl=");
sb.AppendFormat("http://{0}{1}", Request.Url.Authority, ResolveUrl("~/ReportService.svc"));
sb.Append(@",DebugMode=Full");
sb.AppendFormat(@",DealerId={0}' />", 40);
sb.Append(@"</object>");
litObjectTag.Text = sb.ToString();

My goal, if this initial design is sane, is to then pull this object tag creation into a server control, which will have a DealerId property, which in turn will be set within the hosts code-behind. At this point, I have the host dynamically adding parameter values to the object tag's initParams attribute, the next step is to get these values and leverage them within the hosted Silverlight application. I found a few articles to help out with this; I'm creating a public dictionary within the App.xaml.cs, and setting it within the Application_Startup event.

public IDictionary<string, string> InitConfigDictionary;
private void Application_Startup(object sender, StartupEventArgs e)
{
InitConfigDictionary = e.InitParams;
this.RootVisual = new MainPage();
}

Now, I can access this public dictionary from the code-behind of any .xaml user control, like this.

App app = (App)Application.Current;
var dealerId = app.InitConfigDictionary["DealerId"];

This design works just fine, I'm just looking for some guidance, since I'm new to Silverlight. Once again, the implementation works, but it seems like a whole lot of work to go through just to pass a dynamic value from the host to the .xaml files. Because I'm new to Silverlight, I'm hoping that someone with more experience can say that either:

a) Patrick, you're insane, why are you going through all this work when clearly in Silverlight you would accomplish this through the use of "xxxxxx".
b) Yeah, Patrick, it's a drag, but this design is basically what you have to do in Silverlight.

View 1 Replies

C# - Send Parameters Into Dynamically Loaded User Controls

Sep 19, 2010

I load the content of some User Controls into my page with the use of jQuery. So I have this function that extracts the content from my User Control, and it works like a charm.

public string GetObjectHtml(string pathToControl)
{
// Create instance of the page control
Page page = new Page();
// Create instance of the user control
UserControl userControl = (UserControl)page.LoadControl(pathToControl);
//Disabled ViewState- If required
userControl.EnableViewState = false;
//Form control is mandatory on page control to process User Controls
HtmlForm form = new HtmlForm();
//Add user control to the form
form.Controls.Add(userControl);
//Add form to the page
page.Controls.Add(form);
//Write the control Html to text writer
StringWriter textWriter = new StringWriter();
//execute page on server
HttpContext.Current.Server.Execute(page, textWriter, false);
// Clean up code and return html
string html = CleanHtml(textWriter.ToString());
return html;
}

But I would really like to send in some parameters into my User Control when I create it. Is this possible, and how can i do that?

I can see that LoadControl() can take some parameters with object[] parameters but im really not sure on how to use it.

View 2 Replies

ADO.NET :: Dynamically Fill Query Parameters In A Table Adapter?

Sep 18, 2010

SO I have created an object data source on a page from a table adapter using the various Wizards in Visual Studio.

Its meant to query a diary Database by a DateTime parameter called diaryDate. I want to query from a date Now to the next 14 days ahead.

I want to display the entries in a Grid View when the page loads.

So I'm a bit stuck now as to how to set the two query parameters date1 and date2. I want to set date1 = now() and date2 = now() + 14 days.

How do I set those parameters when the page loads ?

Should I have used the adapter Wizard approach of do I have to write all the code in the code behind page ??

This is my datasource code'

[Code]....

This is my query string,

[Code]....

View 1 Replies

Web Forms :: How To Change Pics In Web Dynamically

Sep 30, 2010

i have pics in my website in differnt pages with width and height set to 320*320 px how can change this images in admin section to be replace by new one and with the same size. i m using file concept of storing the images

View 6 Replies

Web Forms :: Change DIV Style Dynamically

Jul 2, 2010

I need to change the div style background url on the fly. How do I do this? background: url no-repeat 0 0;

View 4 Replies

Web Forms :: Dynamically Change An SQL Statement?

Feb 28, 2011

I'd like to have a standard sql select statement that depending on user input changes to alternative one.

I've written code similar to this:

if (something is true....)

{
SQLdataSRC1.SelectCommand = "Select *... etc";

// where SQLdataSRC1 is the name of the sql select statement datasource in the front end code.
}

I've put this code in the onload event and in the SQL datasource event handler but still it gets ignored - and only the SQL select statement in the front end code is recognised.

What am I doing wrong?

View 7 Replies

Web Forms :: Change A SiteMapNode Dynamically?

Mar 19, 2010

I currently have a working menu driven by a sitemap.I would like to change one of the sitemapnode when a user hits one of my pages. How do i achieve this? I just need to change of the url for one of the nodes in the sitemap.

View 1 Replies

Web Forms :: Dynamically Change 24 Dropdownboxes?

Jul 27, 2010

[Code]....

I've mad a function, that has a result of 24 rows.So the first row is LE1, the second LE2, the third LE3 ......But how can i programmically change the row.LE1 ? It should be LE + i ...Take a look at the code:

View 3 Replies

DataSource Controls :: How To Build Select Parameters Dynamically In Code Behind

Apr 9, 2010

I have SQLDataSource for my gridview. By default it works fine but i need to determine a few things before calling my procedure. By this i mean i need to determine a few things about the fields completed and set a flag to determine where the procedure will look.

I found a few examples online on passing parameters in code behind, but cant seem to get them to work. Here is what i tried and cant get results back. When i execute the procedure on the SQL side with the same parameter values, it works, so i know its returning results, so means my values are not being sent or im doing something really wrong. I have some of the lines commented out so the page can load and display for now.. but i need to get it working with custom parameters and flags.

Here is my SQLDataSource:

[Code]....


[Code]....

View 6 Replies

Dynamically Select Master Page Depending On Number Of Parameters?

Oct 31, 2011

Is it possible to select on page load or page pre load a different master page depending on a number of parameters?

A simple example would be if the device is mobile, use master page A, otherwise use master page b.

Can this be done?

View 2 Replies

Web Forms :: How To Change Image Path Name Dynamically

Oct 18, 2010

In my website I have <img src from code behind (created the whole table and css in the code behind). So for an image I added as <img src='../combox/img/products/prod1.gif">

So when I run this page and see the view source, I get the following path for my image: <img src = "http://localweb1/combox/img/products/prod1.gif">. Here localweb1 is my development server.

But I want to change this "http://localweb1" to "http://www.mypage.com/ so the img src will show as <img src="http://aeroprod.com/combox/img/products/prod1.gif">

How should I do this in my code? Do I have to parse? In this case how do I do it?

View 5 Replies

Web Forms :: Image Color Change Dynamically On The Fly

Oct 11, 2010

I have created an aspx page that is displaying user profiles, and on that page I have an asp.net image control that I dynamically populate at runtime based on the users profile image.

I have created several themes, just modifying css to display the profiles with different background and different layouts.

For fun I have created one theme that is kind of like the matrix, and I would like to be able to take the users profile image and change it to a 'green scale' so to speak, or even just a straight up green color, more so this one #20f380. The profile images are just jpg, and are already cartoonish so they should change to green without the image looking to bad.

Is there a way to use code behind to change an image's colors?

C# or VB is fine, currently I've not been able to find any tutorials that work for me, or are close to what I am trying to do.

View 2 Replies

Web Forms :: Can Change Global Resource Value Dynamically

Apr 16, 2010

i have used global resource file resource.resx

and in that i have added key Booklimit with value 10

can i change that value daynamically using dropdownlist from code page page.cs ?

View 2 Replies

Web Forms :: Dynamically Change The Head Of A Webpage?

Aug 18, 2010

I've never had to dynamically change the head of a webpage before and can't quite seem to get it. As mentioned in the title, the webpage is the child of a very simple master page. Here's what i've got:

[Code]....

I've tried :

Ctype(Me.Header.FindControl("head"), ContentPlaceHolder).InnerHtml
+= "<script type = 'text/javascript' src='" & Me.Master.get_root_rel() & "Sections/SectionJSFiles/EditFunctions.js' /></script>"

as well as

Me.Master.Head.InnerHtml += (same as above)

View 2 Replies

Web Forms :: How To Change Website Layout Dynamically

Feb 2, 2011

How to change web site layout dynamically using asp.net? Suppose user wants to select one layout from choice and apply it dynamically.

View 2 Replies

Web Forms :: How To Change Source Of Iframe Dynamically

Apr 8, 2010

I want to change source of iframe dynamically. i.e by request.query the url will be assigned.

View 1 Replies

Web Forms :: Dynamically Change Frameset Contents?

Mar 20, 2010

I have two frames side-by-side in a .aspx webpage.The frame on the feft is set a source page called

category.aspx and the one on the left is set to data.aspx.Now,category.aspx has saome buttons and data.aspx has a datalist control to show data from a database table. What I want is that when the user clicks different buttons on the category.aspx frame ,the data in the data.aspx frame change due corresponding changes in sql query of the datalist in the right-hand frame.

View 1 Replies

Web Forms :: Use Change Masterpagefile Path Dynamically?

Aug 16, 2010

Is it possible to set MasterPageFile name property dynamically?

<%@ Page Language="C#" MasterPageFile="~/xxxx/OuterMasterPage1.master" AutoEventWireup="true" CodeFile="xxxx.aspx.cs" Inherits="xxxx.cs" %>

Can we set "~/xxxx" path dynamically?

View 2 Replies

Web Forms :: Dynamically Change Color Of Bar Chart?

May 7, 2015

bar chart columns colours through conditions base

View 1 Replies

Web Forms :: How To Change Class Of Object Dynamically

Apr 27, 2016

I want to change the class of an object dynamically in C#

Main Class : handleOperator objOpr = new handleOperator();

Then for object objOpr I need to access the methods for another class Class2 :

Means, I want objOpr = new Class2();

View 1 Replies

Web Forms :: Dynamically Change Background Image Of DIV?

May 7, 2015

There is House_info table with H_name column in database and I have <div> in my page that I put background image for it below is code:

<div id="TopmenusP">
<div>
#TopmenusP
{
width:1000px;
height:71px;
float:right;
margin:17px 0 0 0;
background:url(../image/state.png) no-repeat center;
}

I want if in H_name column be="Home" it change div background image...

Here div background image is 

background:url(../image/state.png) no-repeat center;

I want if H_name="Home" it change to

background:url(../image/Home.png) no-repeat center;

View 1 Replies







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