Hi i have a jquery tab. On each tab click i want to load a fresh page . I am using iframe, but while tab switching only the source is changed loading event does not takes place. How can i solve this?
CODE......
function LoadIframePage(url) {
document.getElementById("ifrforms").src= url;
}
<div style="float: none; height: 80...
Hi Guys,
The problem - a big asp.net applications (libs, frameworks, models, everything inside) having web.config file and several developers work on this project. How to make the same "core" shared between all of them, so they don't change the core, but only change the user-specific values that never comes back into code (mercurial) re...
Can you do some research and tell us if session state will end on a laptop which is running an ASP.Net web app on IIS if
We close the laptop lid and open it after some time. The browser window is still open on the same page that I was browsing, but now would the session have expired?
What if I explicitly went into hibernate mode and br...
i am new to ASP.NET development, and i am a little bit curious on the asp.net code behind mechanism.
i know why we use it
but what i would like to know is:
the relation between aspx page and the code behind
who does the linking between these two separate files ?
how does it work?
how an element created in aspx page can be accessed direc...
Hi everybody,
I have this ASP.NET web site that allows users to download program installation packages (just normal files). I want to be able to track when a download is completed (i.e. the file has been fully downloaded to the user's computer) and then invoke a Google Analytics script that reports a completed download as a 'Goal' (obvi...
I have a dropdown list which is in updatepanel. I have to fill that dropdown on a client event through javascript which calls __dopostback of the updatepanel and calls its load event.
Problem is that when i submit the form updatepanel_Load event also execute again and it again reset the DropDownLIst which causes the loss of selectedValu...
Like the preview box below that take input from the textarea we are typing now.
The requirement is to retrieve HTML saved in database and preview it on the screen. Should I use label or is there any better control around?
...
Hi,
I am build an application to import my friend list from my hotmail accounts.
I tired to find out exact solution. Most of the links provide solution, but no one is work.
Can any one give me more information about this.
Thanks in advance.
Imad
...
I require all changes such as inserts, updates and deletes to a table to be auditted, and I'm using a simple SQLDataSource and GridView with automagically generated INSERT/UPDATE/DELETE statements. Problem is, when a row is updated I want to get the ID (primary key) and put that into the auditting table - but because the only parameters ...
what is request-processing pipeline with reference to IIS ?
...
Hi all,
I have used mb.scrollable in my asp.net application,
for that i have written function code behind,and called in ascx page as follows
<% Response.Write(function name); %>
when i use response.write to call function mb.scrollable works fine in mozilla and IE 8,
but in IE 8 it gives Done but with error on page msg at the bottom,
fo...
I need to send push notifications to a Blackberry device from my ASP.NET application. What is the best way to do it? Are there any .NET libraries? Do I need to compile a PAP request by myself or something like this?
...
I want to write parametrized query for select statement. but it gives exception that "Must declare the variable '@'." how to declare this variable .
My code is given below:
SqlConnection con = null;
SqlCommand cmd = null;
try
{
//int @[MONTH_FOR], @[YEAR_FOR];
con = new SqlConnection("Dat...
How can I call an aspx page from a SilverLight application, so that it opens in as a modal dialog and it blocks interaction with the SL application until the dialog is closed?
Thanks
...
I am using an update panel in my application. Inside the update panel i am trying to trigger a html button, which in turn should invoke a server side function after which i need to invoke a client side function.But the client side function is getting invoked first where as the server side function is not getting invoked at all.
Here is ...
We have a web application providing a service using a simple REST interface (GET/POST methods) and returning results in JSON format.
A client wants to use the service from an ASP application (I assume ASP.NET) and asks for example code.
Is there any standard/widely-acceptable procedure for consuming JSON based web services from an ASP....
how to refresh the asp.net Label every second automatically using Java script instead ajax?
...
I suppose this question is pretty subjective, but I think there is bound to be a path that most people consider sensible.
I've been working with C# and ASP.NET for about 3 years, but I've only just started REALLY studying it. My goal is to become a guru in say... 5-10 years. What skills should I have? What should I make sure I have a fu...
My current Web Site does not have any designer.cs files. (Yes it is not a Web Application)
The site is complete but now I added 2 Clases to my site and all good but when I want to make use of my GridView it tells me this:
This is because I wrapped my code with the same namespace as in my classes like so....
namespace samrasWebPort...
Hi all,
I am using Page.Isvalid function in my web page.I have two buttons in my web page namely "save" and "generate".when i click the save button the validation summary will be invoked in which all the validations in this page will be shown.
Now I dont want to show a particular validation message for the "Save" button, but the ...