|
After some research, it is my understanding that this is not possible. I can use query strings to pass information, but that requires reloading the page. I can use web services too, but I'd rather avoid that if possible. At this point, I don't care about...
Started by AgroMan on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
It's not possible, because the silverlight's code behind is not server code, it's client code.
|
|
What would be the best way to call a method in the code-behind of parent page from the code behind of the child page in the ASP.NET 2.0 Web Site model?
Scenario: User clicks a link in the parent page to view a data record's detail in child page (The parent...
Started by Michael Kniskern on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You could just keep it the same, or....
Other then that, with javascript you can call
document.opener.location.href = "url";
to change the url on the parent page .
Easiest way would be to do the whole thing on one page using a multiview or some such thing .
|
|
When it rains I get a collection of water in the foot well behind the driver. The car is a 96 3door GTI . I replaced the seals behind the rear lights at the weekend, although there were no signs of water in the boot . but this morning the carpet was damp...
Started by sdall30 on
, 14 posts
by 6 people.
Answer Snippets (Read the full thread at com):
Door membrane? Out of curiosity where did you get your light seals from? If it was the door membrane would the bottom of the door cards be damp too ?
Got the new seals from VW dealer £14.50 for a pair , they don't generally keep them in stock so you might... .
|
Ask your Facebook Friends
|
I have a project where a .master page was created without a code behind page. Now I want to add a code behind page for this .master page and move the "in page" code to the code behind file. What is the best/easiest way to go about doing this? I'm using...
Started by Guy on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Or you can adapt the Page or Master directive while creating an appropiate code behind file (.master.cs.
|
|
I want to execute javascript function from code behind page.
I have two way that first that I can call javascript of html page in my code behind.
second is that i can write javascript function in to my code behind.
but i am not which one is better and...
Started by Pankaj Mishra on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Hi
You.
Can replace alert('hi'); with your javascript function you want to call from code behind.
|
|
Ok, so I want to create a code behind for non-aspx classes. I have mapping files (classes) that I want to show in project as a code behind for entites. Is there a way to do that in VS2008.
Started by epitka on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Now all "Map" show as code behind classes for my entities, saves me lot.
I actually got this to work.
One of the classes will have to be a partial class .
behind for whatever class you're creating.
|
|
ASP.NET C#
how do i add a title attribute to a panel (div) in the c# code behind file?
Started by ErnieStings on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Markup:
<div id="myDiv" runat="server"></div>
code-behind.
ASP.NET control.
|
|
What's the simplest way to add a new row to a Telerik RadGrid in ASP.NET from code behind?
Started by Anders Eriksson on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Generally though, through the code behind, there are a few method that I've found that you.
Website.
|
|
In production we run tomcat behind apache, in development bare tomcat. How can I know inside the Servlet class if it is running behind apache or not?
Started by flybywire on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
This could be "Is feature X set in JNDI....
If this is to distinguish between development and production environment, then you will probably be better off by having this completely under your control instead of ad-hoc guessing (which will eventually break) .
|
|
Why is the code behind a partial class for aspx pages?
Started by andrewWinn on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
This partial class enables your code-behind file to be used.
The generated partial class file contains declarations for the page's controls .
This class is a partial class of the code-behind class file.
|