MVC :: View - Can't Get Javascript Working In Aspx
Mar 25, 2010
this is a view of an application i am writing these days.. when a view retrieves some data from the controller the value should be passed on to the javascript function called point it.. well this is about reading and image position.. this javascript works perfectly fine when i just test with pure html... what am i doing wrong..
[Code]....
View 4 Replies
Similar Messages:
Feb 17, 2011
I have a .aspx page that has a button on it.When the user clicks on the button, it should call another .aspx page. I am using the following javascript code that works well in our development region. But when it is deployed to another IIS server, it doesn't work.
Code:
function Open_HistoricalRunswindow() {
window.open("http://10.129.1.102/QAWebUI/HistoricalRuns.aspx", "_blank", "toolbar=no, location=yes, directories=no, status=no, menubar=yes, scrollbars=yes, resizable=yes, copyhistory=no, width=1000, height=500");
}
I replaced the IP address with the word localhost and it didn't work either.For some reason, when the user clicks on the button, it opens up another browser window and the address seems to be like this. which is very weird.[URL]I don't understand why the link is getting messed up? Is there any alternate solution for this problem? May be I use server code to call the .aspx page instead of Javascript?
View 4 Replies
Nov 28, 2010
First of all, thank you for the attention.
I am having some trouble, I am very new to asp.net, and the last problem I had, I spent about 59 hours trying to solve, Now I have a new one !
:D well, I guess this is part of the learning process...
Well, in Visual Studio 2010, I clicked New Website. @ C# language, ... The template it gives is pretty nice, it creates a database MDF file, and a login/register setup ready to go !...
You guys can see it live AT CLICK HERE ...
Everything is working, well at least here at the local machine...
There are 2 pages in there, Default.aspX, and About.aspx ... I want to allow ONLY logged in users to view those 2 pages... I tryed a few things, added my account to a role called ADMIN,
In the web.cong I changed Allow"*" to allow"ADMIN" ... still didn't work.. Also, I was trying to avoid using roles for now, and I was trying to find a way to do this for individual pages in the same directory as well... If possible with out touching the web.config file...
View 3 Replies
Nov 1, 2010
I have a 'classic' ASP.NET app (.NET 3.5) with a pretty standard runat="server" style form with server-side controls and an 'Execute' asp:button. In the code-behind, the executeButton_click handler processes some of the other controls, runs a report, and drops the result into an asp:label. So the effect of pressing the Execute button is that the entire page reloads with the report inserted into the label.
I need to change this so that when the Execute button is pressed, the report pops up in a new window with a different layout (ie without the controls and form). If I was doing this in an MVC framework I would just change the view template in the 'execute' action, so the analogue for ASP.NET would be change the code in front, ie the .aspx file that gets used, from the code-behind class.
Is this possible? I know the link between the .aspx and the .aspx.cs isn't extremely tight as it is possible to reuse a code-behind class in multiple .aspx files. So can I set the .aspx file to render from the code-behind?
View 2 Replies
Jan 25, 2011
I have an aspx application with 2 aspx pages. Second aspx page will get opened on click of a button in first aspx page using JavaScript. The problem is, when the second aspx page is getting opened, its Page_load event is not firing. Only when I refresh the second page, page_load event of second aspx page is fired. what might be the problem and what is to be done to fire the page_load event.
View 1 Replies
Feb 26, 2011
For example, I have master page MyMasterPage.aspx and content page MyDefault.aspx. I have many UpdatePanels at MyMaterPage.aspx, and also I have many UpdatePanels at MyDefault.aspx.
[code]....
I want JavaScript functionClickMenu(this) at input button [id="ButtonMaster1" @ MyMasterPage.aspx] pass its value ["Menu-1"] into text box [id="TextBoxDefault1" @ MyDefault.aspx], and then performing update / doing post-back to server ONLY FOR UpdatePanelDefault1.
I am looking forward an example code for JavaScript functionClickMenu(this).
View 4 Replies
Jul 15, 2010
I wanted to disable a button after it is clicked and at the same time fire the post back event to generate a report. My first set of code did not work because soon after the button is disabled the page won't submit/post back. here's the first set of code which was not implemented. the onclientclick calls a javascript function which has these lines
document.getElementById('btnGenerateReport').disabled=true;
GetPostBackEventReference(btnGenerateReport,'');
since it was not posting back,i tried the following on page_load code behind
btnGenerateReport.Attributes.Add("onclick", "this.disabled=true;" + ClientScript.GetPostBackEventReference(btnGenerateReport, ""))
that worked well. but I tried to copy the javascript that got generated and pasted directly on design view
onclick="this.disabled=true;__doPostBack('btnDownloadClientsWithConviction','');"
its not working from client side alone after I disable the code behind attributes.add
but when I check the view source the 2 pages are the samewhy am I not able to move the code from code-behind to design view?
View 1 Replies
Aug 4, 2010
I have a strongly typed partial view named "Address". This partial view contains 'input' fields associated to an Address model class. I want to render it twice in the same view because the user must input the Home address and the Business address.
I have problem with client validation because of the ID of the 'input' rendered is not unique.
Is there a way to set a kind of scope so the id of the 'input' for each partial view has a unique ID that can be recognized by the modelBinder , so that my page post back can correctly organize data into respective address type?
View 3 Replies
Jan 15, 2011
I am using vs2008 pro. my problem is that javascript debugger is not working on mozila firefox but working fine on IE8.
View 1 Replies
Mar 18, 2010
Window.open javascript function is not working in Mozilla, but working in other browsers, here is what I have write.
<a href="javascript:window.open('../Terms.aspx','Terms','width=550,height=400')">
click here</a>
Actually what happened in Mozilla is popup is opened but parent window is blank with [object Window]
View 2 Replies
Apr 4, 2011
Description:- hello code given below is working fine in i.e. and other but not working in all mozila version.javascript is simple to devide two textbox's value. you can easily understand.
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="javascript_test.aspx.cs" Inherits="javascript_test" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<script type ="text/jscript">
var _txtamount;
var _txtins;
var _txtinsamount;
[code]....
View 2 Replies
Feb 15, 2011
I have my iis set up and I can view html pages but I cannot view the default aspx. I can view the test aspx. Any reason why I may not be able to view it?
View 1 Replies
Mar 25, 2011
How can I get the resolved (<%%> resolved) view (aspx or ascx) in a string format? I want to have .ascx file with some <%= ... %> code blocks and I want to be able to send it as part of e-mail in HTML format. How can I do this with MVC?
View 3 Replies
Jan 14, 2011
Is it possible to perform mathematical operations within a .aspx View.? for example..lets say i have a total number of pencils of say 100. and i have 12 students on a data table with his or her name, and the number of pencils she has
Student Name: Pencil #
John 10
Sarah 12
Linus 19
But while rendering the view i want to calculate the Percentage of pencils one student possesses out of the total. (John would have 10% of the total 100 pencils)
How would i just perform this basic math operation, and encode the result into the view. I know i need to store the 100, and divide by each count of pencils for each student within the foreach loop. but i keep getting 0. This seems very elementary i know.. Help would be very appreciated. Google seems to have nothing for me.
View 3 Replies
Feb 2, 2015
I've created a basic table in SQL,
ID, Foldername, ParentID, parentLevel
1, Domestic, 0,0
2, commercial, 0,0
3, Product, 1,1
4, product, 1,1
5, Item, 3,2
6, product, 2,1
7, item, 6,2
I've created a basic web page to that drills down level by level. that all works fine.
I want to manage this table now in an admin page, and was looking for some kind of tree view type code that will allow a user to expand a level and drill down to sub levels.
Code:
Private Sub LoadList()
Litlist.Text = ""
Litlist.Text += "<tr style='background:#808080; color:white; text-align:center'>"
Litlist.Text += "<td>ID</td>"
Litlist.Text += "<td>Name</td>"
[Code] ....
This kinda works but doesn't allow me to expand to create have a collapsible tree view or show/hide TR's. How to do this using a simple table like I have for multiple levels.
View 2 Replies
Jun 11, 2010
I am getting below error when trying to view aspx file in web browser. Server Error in '/Cricket Website' Application. Error finding Application Setting - Error running Procedure - Exception of type 'System.Exception' was thrown.
Description:
An unhandled exception occurred during the execution of the current web request. review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Exception: Error finding Application Setting - Error running Procedure - Exception of type 'System.Exception' was thrown.
Source Error:
[Code]....
Line 162:Line 163: Catch ex As ExceptionLine 164: Throw New Exception("Error finding Application Setting - " & ex.Message)Line 165: End TryLine 166: End Function
Source File: C:inetpubwwwrootCricket
WebsiteApp_Codecommon.vb Line: 164
Stack Trace:
[Code]....
[Exception: Error finding Application Setting - Error running Procedure - Exception of type 'System.Exception' was thrown.] Common.getApplicationSetting(String appSetting) in C:inetpubwwwrootCricket WebsiteApp_Codecommon.vb:164 CMS.Page_Load(Object sender, EventArgs e) in C:inetpubwwwrootCricket WebsiteCMS.master.vb:34 System.Web.UI.Control.OnLoad(EventArgs e) +99 System.Web.UI.Control.LoadRecursive() +50 System.Web.UI.Control.LoadRecursive() +141 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +627 Version Information: Microsoft .NET Framework Version:2.0.50727.4927; ASP.NET Version:2.0.50727.4927
View 1 Replies
Jul 29, 2010
I am developing on my local machine, therefore my url is http://localhost/<VirtualDirectory>/ My site is hosted at http://www.<DomainName>.com
For example: my link to css file is <link href="/styles/styles.css" rel="stylesheet" type="text/css" />
This works fine on on the public site, but breaks on the dev machine because of the addition of the virtual directory level.
I want to add a key to my config file to manage the current location of the site: <add key="CurrentServerLocation" value="http://localhost/<VirtualDirectory>/"/> or
<add key="CurrentServerLocation" value="http://www.<DomainName>.com"/>
Then I want to add the key value to my links, so that I can change the server path in just one location, config file.
For example:
<link href="<#CurrentServerLocation>/styles/styles.css" rel="stylesheet" type="text/css" />
However, I don't know the correct syntax to add a key value to an aspx page?
View 1 Replies
Sep 25, 2011
I'm using a hosting service and I tried putting the default pages (that you get when you make a new website in web developer) onto the hosting service. But they only show up "normally" when I change the extension to html. if it's .aspx it just shows the code.
Question is how can I view the aspx file in the browser from the website normally without using "View in Browser" in that popup menu in Visual Studio Web Developer? And side note I can't use IIS (don't know if that's important but other places talked about it)
View 5 Replies
Dec 27, 2010
i have Uye folder and UyeOl.aspx in this folder.When i run my page my buttons in UyeOl.aspx is not working.If i move UyeOl.aspx to root my buttons works correctly.
View 2 Replies
Oct 2, 2012
I have created an access rule for my website, it looks like it works fine when trying to access .aspx files, but not for any other extensions. I was wondering if there is trick to apply the access rule for all files types.
Code:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.web>
<authorization>
[URL] ....
I tried to add the following code to my main config file but still will only work for .aspx only
Code:
<modules>
<add name="FormsAuthenticationModule" type="System.Web.Security.FormsAuthenticationModule" />
<remove name="UrlAuthorization" />
<add name="UrlAuthorization" type="System.Web.Security.UrlAuthorizationModule" />
<remove name="DefaultAuthentication" />
<add name="DefaultAuthentication" type="System.Web.Security.DefaultAuthenticationModule" />
</modules>
View 7 Replies
Jan 12, 2011
I have a database with images in it and now I want to randomly select an image from the database and view it on the aspx page.I know how to read images from a database depending on the id.Database I am using MS Sql and c# programming.
View 4 Replies
Apr 4, 2011
where the static variables are stored in asp.net aspx page.Is it in the view state? If so I guess you wouldn't want to stored big complex objects?
View 2 Replies
Apr 22, 2010
I have hosted my project in the remote server. i pasted all the dlls & all the necessary files into inetpub->wwwroot ->httpdocs->(pasted all files). In the server we have .net framework 3.5 and IIS 6.0
Now I just want to check whether my files are running locally on the server. So I did the following. Just opened the IIS, made the httpdocs folder as a virtual directory. And then I clicked the httpdocs.It displayed all the files it has in the right side pane. Then I right clicked the default.aspx and then I clicked browse. Now the browser opened with the URL http://localhost/httpdocs/default.aspx. But I could not able to see the aspx page.It just shows "The page is not found"
But when I tried the same steps for opening a .html page it works fine (http://localhost/httpdocs/test.html) I can able to view the html pages.
Whether I need to configure anything on the IIS.... What should I do to view the .aspx files
View 3 Replies
Mar 23, 2010
I have an ASPX web site and I have code in there to redirect from the login page with the call to
"FormsAuthentication.RedirectFromLoginPage(username, false);" This sends the user from the root website folder to 'website/Admin/'. I have a 'default.aspx' page in 'website/Admin/' and the call to redirect works on a previous version of the website we have running currently, but the one that I am updating on a separate test server is not working. It gives me the error "Directory Listing Denied. This Virtual Directory does not allow contents to be listed." I have this in the config file:
<authorization>
<allow users="*" />
</authorization>
under the "authentication" option and...
<location path="Admin">
<system.web>
<authorization>[code]....
for the location of Admin.Also, there is no difference in the code between the web.config, Login.aspx, or the default.aspx files on the current server and the one on the test server, so I am confused as to why the redirect will not work on both. It even works in the Visual Studio server environment, for which the code is also identical.
View 1 Replies
Aug 16, 2010
I want to use Updatepanel on one of the page in website. I have used updatepanel but it does not show any effect of UpdatePanel like Page autorefresh. I have used update panel for whole page, still it got refresh on button click event on the page. what kind of settings I have to do to work update panel on my web-site. Note that: I have added dll reference for AjaxControlToolkit. I don't want to upgrade my website to Ajax enabled website.
View 4 Replies