Sharing Variable Between Two ASPX C Sharp Files
Jul 16, 2010
In my website I have two files home.aspx and tab.aspx with code behind files home.aspx.cs and tab.aspx.cs. I have a table variable in tab.aspx.cs which needs to be sent to home.aspx.cs when I click a button on home.aspx.
View 1 Replies
Similar Messages:
Feb 21, 2010
I've got a section of code that is common to a whole load of pages, so it makes sense to put it in a partial view. However, part of it's function is declaring and assigning a set of variable that will be used throughout the main page. However, if I move that code off to a partial view and use renderpartial to include it, I get a compiler error saying the variable isn't defined - "The name '<variable name>' does not exist in the current context". Am I missing something basic/silly?
View 9 Replies
Oct 20, 2010
I have a ScriptControl that uses an image as an embedded resource and GetWebResourceUrl to generate the WebResource.axd URL. I am currently using GetScriptDescriptors() to send the URL to the JavaScript object.The ScriptControl can be in a Repeater, so you may have 20+ instances. They all use the same images (not customizable through property), so I would like to set the URL once in a variable and share it. I know I could register a script block with a global variable, but would like to avoid that if possible. Is there a way to set a variable within the scope of the control type (global -> control type -> control instance)?
View 1 Replies
Jan 26, 2010
I have multiple projects that need to share resource files (.resx) Suggestions have been made to move resource files to a separate assembly and have web projects reference it. Is there an example of how to do this?
Do I create a new Class Library project and move App_GlobalResource folder inside of that? I don't think that will work because code classes that are generated for resource files are marked as 'internal' which means that they can not be accessed outside of this assembly.
View 1 Replies
Jan 11, 2011
I am looking for an tried-and-tested approach to share .ASPX webpages across websites. E.g. I have a generic error page which I would like to share between x.com and y.com sites.
View 3 Replies
Oct 18, 2010
Using ASP.NET v3.5 / VS2008.
Is there a way to share class files across web site projects without actually making a physical copy of the file to the App_Code folder of each project?
View 9 Replies
May 5, 2010
I am trying to add multiple CSS files across several projects and have added them as a "link" but when I build my solution it does not copy the files. Is there any way to share a bunch of CSS files across several projects?
View 7 Replies
Mar 7, 2011
My team is creating several solutions to develop separate branches of the same site. We have some CSS, partials, and master view files that we would like to somehow share between solutions. I have tried linking files but that has to be done for each and every file (cannot link directories, it seems). Does anyone have a tried and true system for doing this sort of thing for larger sites (other than putting everything in one massive solution)?
View 1 Replies
Jul 13, 2010
I want to know how can I load my files (file1.aspx and file1.aspx.vb) in a container on my index.aspx. My index should have my menu and my container. My problem is that i don't know how do that... options wich i tried:
Iframes: yes work it... but in html 5 iframe will dissapear...
MasterPage: isn't the solution because this refresh all index page.
Ajax: yes.. charge my File1.aspx in the container but i can't call the functions of File1.aspx.vb...
View 2 Replies
Apr 15, 2010
I've inherited a bunch of code that has server script inside of .htm files.
On IIS, a handler mapping pumps.Htm pages though the asp.net engine.
Unfortunately, visual studio doesn't notice that they should be treated as code.
Is there any way to make VS treat .Htm files as code/aspx files?
View 3 Replies
Jun 28, 2010
I upgraded my site from asp to asp.net.This means that all of my previous asp files became obsolete.I don't want to lose my Google Ranking of the old pages.
What is the proper way to redirect?I tried to catch all of the old asp pages is my 404 and then to:
if Request.QueryString("aspxerrorpath").contains("index.asp") = true then
Response.Status = "301 Moved Permanently"
Response.AddHeader("Location", "http://www.domain.com/index.aspx")
Response.Redirect("/index.aspx")
end if
but it doesn't catch asp pages, only aspx.
View 3 Replies
Dec 1, 2010
I see on the bottom of blog pages a sharing buttons (Twitter and Facebook), where if clicked the link behind (which is normally the blog page url) the fshare button takes the clicker to the blog site facebook page respectively.
How does one do this in asp.net 2 , does one one use the <%# %> in the url part of these share buttons, are there any examples of how this is done?
View 8 Replies
Nov 9, 2010
I have a designer working on several pages in Dreamweaver. The designer is creating .aspx files with the Page directive at the top. These are getting shipped to me and I'm adding them to the Visual Studio ASP.NET WebForms Web Application Project. The problem is that there's no code-behind file by default, and I'm trying to find a shortcut to have them autogenerated as if I've added a fresh page from Visual Studio.
View 3 Replies
Feb 28, 2011
If we are deploying ASP.NET web application, Do we need to copy both *.aspx and *.aspx.cs files on the server?Also what if I am using different framework version? I mean 1.1 / 2.0 /3.0 /3.5 /4.0? What will be the answer in different .NET Framework versions?
View 5 Replies
Jul 1, 2010
I need to change the encoding from Western European... to Unicode... for every file in the project. I do not want to have to check out, open, change encoding, save and check-in every file, is there a faster way?
VS2008 + TFS 2008
View 2 Replies
Feb 1, 2010
In my project I have both the vb(.aspx.vb) and c#(.aspx.cs) files. Can i run both the files in my single application? or how to run?
View 3 Replies
Feb 24, 2011
is it possible to open aspx files directly by clicking on them like html files without from within visual studio or visual web dev?
View 2 Replies
Sep 25, 2010
I guess I'm missing something here, but I can't find a way to pass a simple variable from my code behind file to the .aspx page. In code behind I have:
Dim test As String = "test" and in my aspx page I try: <%=test %> that gives me the following error:
Error 2 'test' is not declared. It may be inaccessible due to its protection level
View 4 Replies
Dec 6, 2010
I've defined a session variable in my Session_Start procedure
void Session_Start(object sender, EventArgs e)
{
<other stuff>
string sAdmin= bAdmin.ToString();
Session["SessionAdmin"] = sAdmin;
}
Then in my masterpage I want to use the Session Variable to conditionally show some links in a list.
How do I write the Boolean expression to correctly access the session variable SessionAdmin?
Here's what I have:
<div id="menu">
<ul>
<li><a href="/EmployeeTime.aspx">Employee Time</a></li>
<% if ( *** a Boolean expression involving Session variable "SessionAdmin" *** ) {%>
<li><a href="/Employee.aspx">Employees</a></li>
<li><a href="/ProductLine.aspx">Product Lines</a></li>
<li><a href="/Task.aspx">Tasks</a></li>
<li><a href="/Type.aspx">Work Types</a></li>
<li><a href="/Activity.aspx">Activities</a></li>
<%} %>>
</ul>
</div>
How do I correctly define my boolean expression? I've been looking, but haven't found the right syntax.
View 1 Replies
Oct 1, 2010
I am tring to print the value of a variable in aspx page but its printing the variable name rather then its value.
[Code]....
View 3 Replies
Mar 11, 2011
I have an image map in asp page that by clicking special part it should goes to another page also I need to send a variable.
<
area
shape="rect"
id="myrect"
coords="473,12,583,30"
href="Account/MyAccount.aspx?"
/>
I don't know how to assign a variable. I have variable in my code behind as follows,
string
ship = currentShipment.ShipmentKey.ToString();
Response.Redirect(ProcessFlow.
Config.URL
+ "Account/MyAccount.aspx?ShipmentKey="
+ ship);
View 2 Replies
Apr 7, 2010
I have a master page and its code-behind is inside the MasterPage.mater.cs file. Inside it I have the variable named "theUserID"... like this...
[Code]....
Then, inside the code-behind of a content page (that uses that master page), I would like to use the value of "theUserID", but how do I retrieve it?
View 5 Replies
Apr 6, 2010
Here's my .aspx code.
[code]....
"Databinding methods such as Eval(), XPath(), and Bind() can only be used in the context of a databound control."
I'm more of a php guy, so this is a little over my head..
View 3 Replies
Oct 26, 2010
sales.aspx.vb
Custom function which stores the current DATE into todayDate. I use this function to convert system date into SQL friendly date.
sales.aspx
I used Data Grid and SQL Data source.
SelectCommand="select * from sales where aab = 110026"
I want my select statement should take the date from todayDate.
i.e.: SelectCommand="select * from sales where aab = todayDate"
How to write this statement in correct syntax.
View 4 Replies
Mar 17, 2010
I am developing a multi-lingual website. I am determining the requested language via a querystring variable eg: [URL]
I am using two <asp:LoginStatus /> controls in my masterpage. My web.config file is set up like this for forms authentication.
[code]....
Currently when you click on a <asp:LoginStatus /> you will be redirected to my login page and the url will look something like this: [URL]
What solutions are available to me so that I can append my lang variable to my login.aspx? depending on which language is currently active?
View 1 Replies