Passing Page As A Variable?

May 27, 2010

I have this sub in a class modulePublic Shared RunMySub(ByVal P as Page) 'I need page ref in the class sub to clear cache like

P.Cache.Remove("MyCache")
end sub

When I call this sub 'RunMySub' from a page, it works fine, ok, great !BUT now I need to run it from another class module...so I did this

Dim mpage As New Page
RunMySub(mpage)
mpage = Nothing

I get the error : Cache not available...How can I pass a page from another class module , thats not a page, or some how manage cache functions on a class module without pass the page varible ???

View 2 Replies


Similar Messages:

State Management :: Passing The Variable To Another Page?

May 3, 2010

want to use the value of a variable on to the other page, what i am supposed to do for that.i am novice at asp.net

View 8 Replies

C# - Passing Variable Values From One Page To Another Page?

Feb 4, 2011

When passing variable from one page to another

To avoid the user messing around with the URL parameter Values

Is it best to ...

1) pass the variable via session

2) pass the variable in the URL along with a signature

View 4 Replies

Passing Variable From Page To Page Using .NET (C#) Without Using QueryString?

Nov 5, 2010

Looking for advice on passing variables from page to page without using QueryString. The web crawlers such as google get caught up on the querystrings found in a URL. I'm trying to get away from using it. Is there another suggested method for passing the variables? I've thought about using session variables, but this is just for simply passing the variable from page to page and they won't always be the same.

On another note, I can't do it using forms. I'm using a master page with a form embedded in the master page and also the content pages. Unless microsoft updated it so you can multiple forms on one page.

View 7 Replies

Passing Variable From One Website Page To Another Website Page Without Using QueryString

Jan 3, 2011

Passing Variable from page to page using ASP.NET (C#) without using QueryString

The difference in my case is that the request is coming from a different website (in java) to my website (in asp.net). I do not want the variable to appear in url.

To explain my scenario, we are making a webpage(plugin), which can be called from any other website. To authenticate request, i am looking for a mechanism when other website will pass id & auth-key to my page. This i can use to authenticate the request. I do not want these variable to be visible.

View 3 Replies

Passing Javascript Variable To C#?

Nov 15, 2010

I just need to know how to pass a javascript variable to c# when i click on a button

View 2 Replies

ADO.NET :: Passing String Variable To SQL

Feb 22, 2011

I have this string variable:
[Code]....

I want to pass the string MON to the sql query: to replace trunc(sysdate) .
[Code]....

View 3 Replies

Passing Variable From Event To Page_Load?

May 19, 2010

I am thinking this is a pretty simple problem... but I can not get it to function.I just want to get the calendar control to change a date which subsequently modifies a database select statement. I can get the current code to process without error, but the variable set is always a click earlier. Of course, I want the variable to be set upon any change in the calendar control.

public partial class NewBusinessReport : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{

[code]...

Does this make sense? I just want it so that when SelectionChanged gets fired the Calendar1SelectCommandDate passes the correct date to the Page_Load page. The error I get now is:"The name 'Calendar1SelectCommandDate' does not exist in the current context"I get that the variable does not exist in the context. That actually seems to make sense based on what I have coded; however, I try to get that variable established and I still seem to be headed in the wrong direction.Basically, I have four calendar controls, one for a date (period 1 start, end and then period 2 start, end). I want to set the program so any change in that date sets off a new Select statement into the SQL server.

View 1 Replies

VS 2008 Passing A Variable Between Two Protected Subs?

Aug 31, 2010

I hope this is simple but I can't find any information when searching Google about passing a variable between two Protected Subs.

When I use the fileUpload tool within my webform I need to take the filename chosen and use it in a different Protected Sub

View 8 Replies

DataSource Controls :: Passing A Variable In A SelectCommand?

Jul 7, 2010

I am trying to pass a variable within a selectcommand statment in ASP.NET and I have researched online how to do it but I can't seem to find a way to do it...What I am trying to do is write a code for a web page that will display a page with useful links on it where the links are separated into different topics and where everything is dynamically grabbed from a database. This is what I have so far:

<!-- Start MainContentRegion -->
<h1>Useful Links</h1>
<asp:SqlDataSource ID="SqlDataSource1" runat="server"

[]code...

View 4 Replies

Web Forms :: Passing Variable To Javascript Alert?

Jul 1, 2010

protected void saveMergedFile(string[] ReportFiles)
{
foreach (string item in ReportFiles)
{

[code]...

View 24 Replies

Passing A JavaScript Variable To A Helper Method?

Feb 24, 2011

I am using ASP.NET MVC 3 and the YUI library.I created my own helper method to redirect to an edit view by passing in the item's ID from the Model as such:

window.location = '@Url.RouteUrl(Url.NewsEdit(@Model.NewsId))';

Now I am busy populating my YUI data table and would like to call my helper method like above, not sure if it is possible because I get the item's ID by JavaScript like:

var formatActionLinks = function (oCell, oRecord, oColumn, oData) {
var newsId = oRecord.getData('NewsId');
oCell.innerHTML = '<a href="/News/Edit/' + newsId + '">Edit</a>';
};

View 1 Replies

Web Forms :: Passing Value Of A Variable With URL Of The Hyperlink Control?

Sep 4, 2010

I have 10 hyperlink controls. Depending on which hyperlink is pressed I want to pass a value to the target page. I think the easiest way would be to pass the value using URL of the hyperlink controls. Something like <asp:HyperLink ID="HyperLink1" NavigateUrl="~/News.aspx?id=>. I can pass just a value, but I want to pass a value from a variable.

<asp:HyperLink ID="HyperLink1" runat="server"

View 3 Replies

Configuration :: Passing Variable Externally To VB.NET Web Application?

Nov 18, 2010

I need to make the connection string in my vb.net web application be passed into the app externally. This is so I can re-driect the app to use either a test or production database. The same idea as a .INI file in a windows base system. someone suggested to me I use XML but I dont know how to do that.

View 13 Replies

Forms Data Controls :: Passing A Variable To Onclientclick?

Mar 10, 2011

I cant get this right

[Code]....

Where PKey is a variable that holds the Datakey

View 8 Replies

SQL Server :: Passing A Variable To A Remote Stored Procedure?

Feb 27, 2011

I have a SQL stored procedure on a SQL server that uses a variable to create a new database. This works in SQL I have a connection string that works I have added a sqldatasource to a webform, and configured the datasource to connect to the remote SQL database and am able to select my stored procedure. I am able to bind the variable to a control in the sqldatasource wizard (often two of the same control appear- if that is significant)

When I test the sqldatasource in the configuration wizard and put in a manual entry, the procedure runs and works

It is on the web page I am having troubles. I want the user to enter a name in a text box, click a button/link, and run the procedure. Ive used buttons and links...but not in the right way I think, becuase when I click them the stored procedure doesnt run.

As mentioned above, I have selected the right control in the sqldatasource wizard. So what do I need to do now?

Is it button click event? If so whats the syntax?

Should I be embedding my textbox in a dataview?

View 4 Replies

Forms Data Controls :: Passing Hidden Variable Value In DataNavigateUrlformatstring?

Jan 24, 2011

I am using ASP.NET 2.0 and C#. I have a gridview, which has a datanavigateurlformatstring, in which i am passing data in the gridview as querystrings.I have a hiddenvariable in the page. i would like to pass the hidden variable to the gridview in the datanavigateurlformatstring.Currently i have the gridview and hidden variable like this:

[Code]....

How to pass the hiddenfield value in the datanavigateurlformatstring?

View 3 Replies

Web Forms :: Passing Variable From Code Behind To A Java Script Function?

Feb 18, 2011

can I pass a variable from code behind to a javascript function. if so, do you have a sample demo.

View 1 Replies

Forms Data Controls :: Passing A Variable To Data Source Query?

Feb 26, 2010

I'm using the DetailView control to display employee details from a specfic company, but it seems when I try to create the query in the data source wizard I'm unable to select the variable for the WHERE clause, only the web pages control components.

The employees are selected through the company name which is entered at the beginning of the page and in turn is used to select the company id.

View 2 Replies

WCF / ASMX :: Passing Variable From Dropdownlist.selectedvalue To Asmx Webservice

Nov 10, 2010

On my page I have a dropdown for country.

On my asmx service I want to get the value of the dropdownlist to filter the next input which will be state/providence.

My code on the asmx:

[Code]....

I want to add another clause to the WHERE statement to restrict Country = @Country so I will need to get that value to the web service.

View 2 Replies

Passing Value To Another Page Using Https / Cannot Read The Control Values From Default.aspx Page

May 30, 2010

I need to force SSL when going to the final checkout page (for example from default.aspx to checkout.aspx).

I need to pass variables to this check out page and tried to use server.transfer(https://www.mydomain.com/checkout.aspx). I then use previous page .Fincontrol to read text box and label name to this check out page. If I only do the server.transfer("~/checkout.aspx") then my I can read all vakues of my controls from the passing default.aspx page.

But when I force https:// then I cannot read the control values from default.aspx page.

Please give me some tips on how to get control values to the https:// destination page or if you have another tips on how to do it the right way, please let me know.

View 8 Replies

Cross Page Postback And Passing Info From Source To Destination Page

Feb 15, 2010

I have a FileUpload control in the Source page. On the Upload button handler, I read the file into memory (after doing some validations) and since it's always going to be a TXT file, I create a string that I need to pass to the Destination page. I thought of using Cross Page postback and set the PostBackUrl property of the upload button. But it appears that the breakpoint in the Upload button handler is never hit. It directly goes to the Page_Load in the Destination page. If I can't use Cross Page postback and don't want to use Session or the database, how do I pass this string from Source page to the Destination page?

View 2 Replies

Web Forms :: Passing Text Box Value From Aspx.cs Page To SelectParameters In Page

Sep 5, 2010

I would like to take a value from a text box and pass it as a search parameter to my database. I get the value from my code behind page as follows: protected void btn_click(Object sender, ImageClickEventArgs e)

View 2 Replies

Web Forms :: Passing Variables To Child Page From Master Page

Aug 17, 2010

I need to access a variable that is declared in a master page to a child page. I'm using asp.net 2.0 (vb). I'm sure this should be easy and is down to my inexperience with asp.net! A rough guide to my code is below;

MASTER PAGE
<%@ Master Language="VB" CodeFile="MasterPage.master.vb" Inherits="MasterPage" %>
<script runat="server">
Public UserNumber As Integer = 3
End Sub
</script>
CHILD PAGE
<%@ Master Language="VB" CodeFile="MasterPage.master.vb" Inherits="MasterPage" %>

View 2 Replies

Passing Data From Page To Page Using System.Web.Caching.Cache?

Apr 23, 2010

I'd like to pass data from one asp.net page to another. I've seen that using System.Web.Caching.Cache is a good way to accomplish this. I'm wondering if it's a good way to do it and also is there any cleanup or other things I need to keep in mind when you the Cache?

I'm not passing very much, at most two integers.

View 2 Replies







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