|
You'll have to specify the target of the link if you don't want to use the default target (usually same tab). See a tag reference for more information.
Philippe Mori
|
|
|
|
|
good day
what I want is the user to open the pages. aspx and hold open
for example would allow you to open about 10 pages. APSX within tabs
to consult other information that does not need to close the pages for
you want to open
the user can keep multiple pages open
for example, product page, customers, employees, accounts, suppliers both
thanks
|
|
|
|
|
Hi,
I want to know approches to use http://flexpaper.devaldi.com/ in our asp.net project. I have tried but i am a little bit confused so please provide help to use this.
I want to know that it is free or not. that means is there needed to license for http://flexpaper.devaldi.com/ ?
Thank you
|
|
|
|
|
Why not ask them, it's their product?
|
|
|
|
|
How to display regression equation and R-squared value along with trendline in asp.Net Chart control.
|
|
|
|
|
|
I have a master page and other views in me project. how can I inilialize the data items and controls (such as controls that set with a Viewbag and Viewdata) in master page.
when I call a Controlller in my project I hava to repeat the initoalize codes to prepare data to masterpage Items.
|
|
|
|
|
|
I am working on an application with Asp.net 3.5. I need to take so many inputs from user including Personal info, Dependent info, plan info etc. having around more than 100 values.After taking input I need to send the user to review page to check for data entered.In case if he wish to change anything come back again on first page to correct the input and then go to review page.After correction he can proceed to save the data.So I would like to know what is the best way to persist this so much data across postback.
|
|
|
|
|
Dealing with so much inputs, I will split the page in different steps(pages) e.g. step 1 for Personal Info, Step 2 for Dependent info etc. on submit of each step, save the data to database with a status of Incomplete and after user submiting the data on the review page, you can flag his entry in the database as completed.
|
|
|
|
|
Actually client is insisting to take all the inputs on the same page with different section using accordion.So I have a single page in all.
I need to wrap this application in DNN.How can i achieve this, so as to take benefits of DNN as well. Will below any module will work for this: http://www.mandeeps.com/products/dotnetnuke-modules/live-wrapper.aspx?ref=dnns
http://www.mandeeps.com/products/dotnetnuke-modules/live-content.aspx?ref=dnns
http://store.dnnsoftware.com/home/product-details/porto
or other way?
modified 14-Apr-14 3:05am.
|
|
|
|
|
Hi Guys
In my web application I am using the following pages.
a. Master Page : Site.Master
b. Aspx Page : ABC.aspx
c. User Control : UC.ascx
d. Aspx Page : email.aspx
Now the scenario is:
The master page(Site.Master) and user control (UC.ascx) are used in ABC.aspx.
The requirement is when the user click on "Email" button in "abc.aspx", one jquery dialog box should get open and inside it the "email.aspx" should get called.
But now when I click on "Email" button I don't know why the Page_Load event of ABC.aspx raises.
Code is-
Master Page(Site.master)
<div id="divSubscribeDialog">
</div>
User Control(UC.ascx):
HTML Code:
<input type="button" id="emailButton" value="Email" onclick="javascript:return onEmailClick();" />
Javascript Code:
function onEmailClick() {
$("#divEmailDialog", window.parent.document.body).html('');
$("#divEmailDialog", window.parent.document.body).load("../Email.aspx").dialog({
width: 800,
right:10,
height:800,
position: 'center',
modal: true,
resizable: true,
draggable: false
});
return false;
}
Any Help friends.....???
Thanks
Abhishek
Mumbai, India
|
|
|
|
|
It could be a javascript error causing the page to postback.
I have never used the dialog function, the issue could be when you are loading the email.aspx and then calling dialog when the email.aspx is still busy loading, try calling dialog function after the email.aspx is done loading e.g.
$("#divEmailDialog", window.parent.document.body).load("../Email.aspx",function () { });
|
|
|
|
|
If you are using asp:Button, use OnClientClick to call the method you have to open jquery dialog window and then return false. This will inhibit postback.
OnClientClick="popupdialogmethod(); return false;"
You can go sleep at home tonight if you can get up and walk away
|
|
|
|
|
Hi,
Can you try this ?
function OpenMyPopUp(){openPopup('../Email.aspx', 530, 800, 'Page Title');}
function openPopup(url, h, w, t) {
if (url != null && h != null && w != null && t != null) {
urlBase = location.href.substring(0,location.href.lastIndexOf("/") + 1);
url = urlBase + url;
$('#divEmailDialog').html('<iframe border=0 width="100%" height="100%" src="' + url + '"> </iframe>');
$("#divEmailDialog").dialog({
title: t,
modal: true,
autoOpen: true,
height: h,
width: w,
resizable: false,
position: 'center',
closeOnEscape: false,
dialogClass: "alert"
});
}}
|
|
|
|
|
Hi,
I want to share a master page between different web applications. Can anybody please advice me how can I do it? I have master page in a web application called CommonLogin, can I have detailed page in FFVP application which can access the master page from Commonlogin, like FFVP I would like to have different web application which use the same master page from CommonLogin. Here is the error message I am getting
The virtual path '/Internet/apps/CNPWeb4.5/CommonLogin/CNP.Master' maps to another application, which is not allowed
Please help me any kind of help is helpful. Thanks in advance.
Thanks & Regards,
Abdul Aleem Mohammad
St Louis MO - USA
|
|
|
|
|
|
Hi,
I did the same thing, but still I am getting the following message. Can you please help me. I have created a web application (WA) and a master page in it and then I have implemented classes MasterPageVirtualFile and MasterPageVirtualFile in it.
Then I have created a virtual directory mapping this application physical folder (MasterPageVD).
Then I have another applications default page in that I am using the reference of (WA) and in Global.asax I am registering Master Page path. I am getting the following message. Where am I missing? Please help me.
Thanks in advance.
"System.ArgumentException: The virtual path '/Internet/apps/MasterPageDir/MasterPage.master' maps to another application, which is not allowed"
Thanks & Regards,
Abdul Aleem Mohammad
St Louis MO - USA
|
|
|
|
|
I found that
assembly.GetManifestResourceStream(MasterPageVirtualPathProvider.VirtualPathProviderResourceLocation + "." + resourceFileName)
is returning null, is it not used for the web applications, is this function only used for class libraries?
Thanks & Regards,
Abdul Aleem Mohammad
St Louis MO - USA
|
|
|
|
|
Sorry I got it friend I would post the code very soon. Thanks for all your support.
Thanks & Regards,
Abdul Aleem Mohammad
St Louis MO - USA
|
|
|
|
|
Just now i see your reply.Glad you solved it
You have to learn to think like a computer or teach him to think like a human...
----Kornfeld Eliyahu Peter
|
|
|
|
|
Hi,
I have created new web application and it is mapped to the following url 'http://localinternet:80/'.
But I want to remap the application URL with my defined virtual directory ie. 'http://localinternet/Internet/apps/CNPWeb4.5/Ffvp', but its allowing me to do this.
Can anybody help me please? Any sort of help would be helpful.
Thanks in advance.
Thanks & Regards,
Abdul Aleem Mohammad
St Louis MO - USA
|
|
|
|
|
First of all what error you are getting? which version of IIS you are using.
|
|
|
|
|
Sorry I got it sorted out, the problem was when we open the project properties in web section there we have option called create virtual directory. It wasn't doing it by displaying message the directory is already mapped to different folder.
By checking different options on the same web section I got it sorted out.
Thanks & Regards,
Abdul Aleem Mohammad
St Louis MO - USA
|
|
|
|
|
cool
|
|
|
|