Can A Page Have Multiple ScriptManagers
Jun 15, 2010Can a page have multiple ScriptManagers? If yes then under what condition will it be required ?
View 2 RepliesCan a page have multiple ScriptManagers? If yes then under what condition will it be required ?
View 2 RepliesI have an asp.net 4.0 app where all pages use a master page. I have several dynamic aspects going on in both the masterpage and the child of the pages. For both I'd like to be able to use the built in Microsoft ScriptManager with this kind of pattern:
Code behind:
[code]...
So, to use this technique I'd like to expose static [WebMethod]'s in both my masterpage and my child page. My question is, how do I manage this with a ScriptManager? From my understanding, I need to have a ScriptManager within a form tag (why?) so that a javascript library is added to allow me to use the PageMethods object. Should I just create one ScriptManager in my masterpage and tuck it in a useless form tag in the masterpage? Will that ScriptManager pickup the [WebMethod] functions in my child page? And what about that form tag: I know I can only have one form runat='server' tag so how would I manage a that with other forms I need within my masterpage? Like my little form that wraps my search function at the top of the page?
I'm using asp.net AJAX and history points with the ScriptManager and it works great. My only problem is that when I make non AJAX pages I have come to love url-rewriting with nice "hackable" urls. Without SecureHistoryState my url will look like for example [URL] where "/Home/Frontpage" is the page to show. I have seen on other web-pages with AJAX (maybe not asp.net) that the url will change into for example [URL] which is a lot nicer. Or if I could have[URL]I would be very happy. I don't need the history url to contain anything else than the page path. Is this at all possible with asp.net AJAX?
View 1 RepliesI have used multiple grid view on same page with multiple selectedindexchanged event but selected indexchanged event call only for first gridview.
View 1 RepliesI have an update panel in a user control and I am adding multiple instances of it for example 5.
When that update panel refreshes the page load occurs 5 times.
How can I prevent it only for once?
I have an application that needs to render a page that will have multiple Radio Button Groups as well as multiple CheckBoxes. The desired layout is determined by a database table.
table structure:
PackageID uniqueidentifier
PackageName string
ItemName string
RadioGroupName string
ViewControlName string
This table defines a "Package". The "Package" can contain many different "Items" that require different controls used in the View. The "RadioGroupName" field is used to mark which RadioButtons should be grouped together. The "ViewControl" field marks which control should be used on the View to display the field. The query in my repository will return a result set such as
1 / "First Package" / "Item1" / "First Group" / "RadioButton"
2 / "First Package" / "Item2" / "First Group" / "RadioButton"
3 / "First Package" / "Item3" / "First Group" / "RadioButton"
4 / "First Package" / "Item4" / null / "CheckBox"
5 / "First Package" / "Item5" / null / "CheckBox"
6 / "First Package" / "Item6" / "Second Group" / "RadioButton"
7 / "First Package" / "Item7" / "Second Group" / "RadioButton"
8 / "First Package" / "Item8" / "Second Group" / "RadioButton"
Given this result set, I need to render the view as follows:
A RadioButton group with 3 options (Item1, Item2, Item3)
A CheckBox (Item4)
A CheckBox (Item5)
A RadioButton group with 3 options (Item6, Item7, Item8)
I have read that it is possible to use "if" conditions and looping structures inside the View. I have also read that this is a bad practice. Another issue I see is knowing which Item has been selected from each RadioButton group when I hit the Controller POST function. Previously I have built a page that has a single RadioButton group. My ViewModel was as follows:
[Code].........................
I have created a Web Control in ASP for use in integrating with Telligent CommunityServer. The control is written in ASP with some 10 lines of C# backend for controlling visibility of the UI elements based on permissions, but I'd say 90% of the functionality is straight-up Javascript. The control works beautifully, until you drop two instances of the Control on the same page--since they reference the exact same Javascript functions, only one control works. How can I take this functionality that I have, this 1200 lines of Javascript, and make it so that each instance of the control can reference its each unique instance of Javascript?
View 2 RepliesI'm planning to make a page that has about 10 different pages for varying use, for example, stats, data entry, reports, logistics, audit, sales, promo, etc etc. I'm anticipating there will be many combinations as to what pages a user may have access to, for each page, a user ought to be authorized to either enter new data, edit data, print and/or just view.
My questions are :
1. can membership & roles be used, once user is logged in, to display links to all the areas of the web app he is allowed access to?
[code]....
2. besides having access to a particular page, a user should, as mentioned before, be authorized to either enter new, edit, print and/or just view data.
3. Is there a preferred/better method to handle this besides using membership & roles?
I have 2 DataGrid in a single page.
First DataGrid contain 2 page and 10 records per page
Second DataGrid contain 5 page and 10 records per page
When i click 3rd page of second DataGridthe following error occur
"Invalid CurrentPageIndex value. It must be >= 0 and < the PageCount."
public partial class Admin_Over_all_report : System.Web.UI.Page {
Dataconnection dc = new Dataconnection();
protected void Page_Load(object sender, EventArgs e) {
if (IsPostBack == false) {
bind();
[Code] ....
Is it possible to do something like this?
Inherits="System.Web.Mvc.ViewPage<List<SectionAdmin.Models.ADirectory>>, <List<SectionAdmin.Models.BDirectory>>"
I am trying to use both models in my page.
I have a number of web pages that upload files as blob objects, all working fine.
I've come to a page, where I need to upload different types of files for different reasons - all on one page.
I've cut out all the HTML to make this easier to understand what i'm doing..
Code:
<form id="Form1" method="post" runat="server" enctype="multipart/form-data" action="UploadPhoto.aspx">
<asp:FileUpload ID="FileUpload1" runat="server" style='width:450px'/>
<asp:button id="btnUpload" style='margin-top:10px;' type="submit" text="Upload & Attach" runat="server"></asp:button>
</form>
Now, in the code page, I can capture the button click with..
Code:
Protected Sub btnUpload_Click(sender As Object, e As System.EventArgs) Handles btnUpload.Click
If FileUpload1.HasFile Then
Dim name As String = FileUpload1.PostedFile.FileName
Dim Justname As String = Path.GetFileName(name)
[Code] .....
All works well... Now, I want to have a few input boxes for uploading different files.
Code:
<form id="Form1" method="post" runat="server" enctype="multipart/form-data" action="UploadPhoto.aspx">
<table >
<tr>
<td>Thumb Image:</td>
<td>
<asp:FileUpload ID="FileUpload3" runat="server" style='width:450px'/>
[Code] ....
But the button events on the code page aren't executing?? Page flashes and nothing happens. - Also tried writing out
Code:
for each item as string in request.form
response.write(item & " = ")
response.write(request(item) & " <br> ")
next
Again, nothing is being sent?
I have 2 forms on one page. 1 search form which only contains a text field and a submit button and 1 registration form which has a few required fields. The search form need to post data to search.aspx.
<asp:TextBox ID="search" runat="server"></asp:TextBox>
<asp:ImageButton ID="searchBtn" runat="server" PostBackUrl="/search.aspx" />
everytime when searchBtn was clicked, the page will check all the required fields from registration form. Does anyone know how to solve this problem?
What whould be the best way to prevent multiple users on a page?
For example if a user is at the page "Home.aspx", no other users should be allowed to go there.
I'm using asp.net on the server and the js-frameword jQuery on the client side.
I don't know it's even possible but I try to achieve to post data from one page to another using the second form.The problem is I need a form tag for the user interface containing callback panels etc. I want to put a second form with some hidden-field:
<form id="postForm" method="post" action="target.aspx">
<input type="hidden" id="id" />
</form>
I submit the form from javascript with jquery:
$("#id").val(id);
$("#postForm").submit();
Is there a way access the value of the hidden field on the target page?
I want to put Multiple Checkboxes on a web page and I want the User to be only allowed to check one box. IE if you have 3 checkboxes number 1 to 3, if box 2 is checked then you check box 3 I want 2 to uncheck it's self.
View 6 Replieshow to add multiple fckeditor field on asp.net mvc page?
[Code]....
I'm using the Microsoft Chart control to put a couple of charts on a web page. If you render 2 charts, the resulting HTML is something like this (the table is mine, the img and map are from the MS Chart):
<table id="chart">
<tr>
<td id="rolling">
<img src="/ChartImg.axd?i=chart_45ec7063132a47d9bf08ce377f4d6030_0.png&g=d82064ecb0cf459dbda23039ae0c3f70" alt="" usemap="#ImageMap" style="height:200px;width:250px;border-width:0px;" />
<map name="ImageMap" id="ImageMap">
<area shape="rect" coords="190,112,242,132" title="$321.01" alt="" />
<area shape="rect" coords="59,69,111,132" title="$1,017.92" alt="" />
<area shape="rect" coords="138,104,190,132" title="$449.04" alt="" />
<area shape="rect" coords="7,25,59,132" title="$1,714.59" alt="" />
</map>
</td>
<td id="highrisk">
<img src="/ChartImg.axd?i=chart_45ec7063132a47d9bf08ce377f4d6030_1.png&g=6f876c9016cd4b72b5ba60609b9d05ec" alt="" usemap="#ImageMap" style="height:200px;width:250px;border-width:0px;" />
<map name="ImageMap" id="ImageMap">
<area shape="rect" coords="190,128,242,132" title="41" alt="" />
<area shape="rect" coords="59,131,111,132" title="6" alt="" />
<area shape="rect" coords="138,25,190,132" title="922" alt="" />
<area shape="rect" coords="7,121,59,132" title="100" alt="" />
</map>
</td>
</tr>
</table>
Note that both charts use the same name for the image map for each chart - "ImageMap" - and it uses the coords from the first chart on the subsequent charts, even though it puts different titles on each element.
Am I doing something wrong in trying to render 2 charts on 1 page? Is there a workaround for this?
I have a view which displays columns from multiple tables. for ex memberprofile(firstname, gender )
membereducation( education), memberoccupation(occupation) etc.
now i want to insert them. how to make this view strongly typed with multiple tables iam using linq.
I need to do multiple file uploads in my ASP.NET page. I also have to display a progress bar with the status of the file transfer. It should display an all file progress status bar separately and a total in a separate progress bar until the file upload has finished.
View 4 RepliesFor my project(in asp.net) i wrote near 1000 lines of c# code for one asp.net page.It includes so many functions.The problem is,it is going complicated while i am writing more codes on one page.How can i make multiple c# files for one asp.net page?? I tried by adding new class in VS2008.But calling a function from one file to other is making error(item is not present in current file).How can i do that??
View 6 RepliesI have several partial views on the same view. They each have IEnumerables in a WebGrid with paging.
When I page one, they all page to the same page.
How do I fix this so each has a working pager?
I am using vs2008
I am having one solutions with Mutiple Projects
Example
1.PayRoll [ Project 1 ]
2.Employee Portal [ Project 2 ]
MyWorkPlace[Folder Name]
BasicInfo.aspx
LeaveInfo.aspx .....Etc
these two Projects run SeparateURL
Database is Common for Both Project
In Both Project i am Generating Dynamic Menu Only..
in DB ///
Forms URL
Leave ../../MyWorkPlace/LeaveInfo.aspx
Profile ../../MyWorkPlace/BasicInfo.aspx
Like this only Menu url wil be Given in Database.
Menu Wil come i Both Application..
But Pages are in Project 2[ Employee Portal Only ] but i have to access this Pages in
Project 1 [Payroll]
i recently installed IIS SEO toolkit on my Windows 7 desktop and tried to run a SEO report for my web site [URL], based on a multi-lingual (greek, english) implementation of asp.net mvc 1. One of the violations reported, has to do with the fact that in my global.asax file, i have the default values "el-GR", "Home" and "Index" for the locale code, controller and action route parameters correspondingly. This way, the [URL] and the [URL] are reported to be acceced from the same url from the SEO toolkit, like shown below:
The page with URL [URL] can also be accessed by using URL [URL].
I have a class in my App_Code folder called Order. On one of my pages I am trying to create two different orders using this class.
[Code]....
When I run the page each of the Response.Write statements ouputs a 2. But this is not correct. One should be 3 and the other should be 2. Does anyone know why this is not working?
I have a class in my App_Code folder called Order. On one of my pages I am trying to create two different orders using this class.
Private Order1 As Order
Private Order2 As Order
Sub Page_Load(ByVal Sender As Object, ByVal E As EventArgs) Handles Me.Load
Dim CartID As String = 4525543
Order1 = GetOrderFromDatabase(CartID)
Order2 = Order1
Order2.Shipping = 3
Order1.Shipping = 2
Response.Write(o.Shipping)
Response.Write(Order2.Shipping)
End Sub
When I run the page each of the Response.Write statements ouputs a 2. But this is not correct. One should be 3 and the other should be 2. Does anyone know why this is not working?
I have a page in a structure as follows. But the loading time of the page is takes 20 or more seconds. In usercontrols i'd used Telerik RadControls, for that reason i can't use updatepanel to avoid script problems or etc. I had tried to add usercontrols dynamically but there is about 14 usercontrols and it takes the same time period :(. I had tried using PartialUpdatePanel as in [URL] but it's not compatible with telerik controls. My client wants to have the all 14 usercontrols being in the same page (not divided by tabs or wizards)
Structure :
MasterPage
Page
14 Usercontrols that contains RadListViews has couple postback events.