I've got trouble getting Intellisense to work in ASP.NET source view.
For example, I register the Telerik RadControls DLL with a tag prefix, as it says in the samples:
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
But when typing <telerik: no intellisense appears.
Also, after adding a coupl...
I simply want to set an image as a background of asp.net page? I can display image in simple format on web page, but can't apply it as background.
...
Hello,
Scenario: I am trying to insert a team (composed by multiple persons) on a single page. I have a web user control to insert each person, and when a team has multiple persons several Web User Controls are displayed at the same time.
Each user has a ValidationSummary and several validators (All grouped to the same validation group...
I would like to display all my content in a div that is 800px wide, centred in the page. That way, all browser window widths are catered for. How do I go about doing that?
...
I know I check it programmatically from
ConfigurationSection configSection =
(CompilationSection) ConfigurationManager.GetSection( "system.web/compilation" );
I know that it is also somewhat slower to have in production ... yet if we are in a kind of beta it does not harm yet ...
...
Hi guys.
I'm building a tiny webapplication in which our customers can update some details about their company. The customers currently don't have a login/password and we don't want to validate their registration, so we want to give them a automaticly generated password/key to login to the website.
Our plan to encrypt their customerId ...
On aspx page I have a PlaceHolder that is inside Updatepanel.
I am creating nested-repeaters on runtime:
protected void Page_Init(object sender, EventArgs e)
{
CreateRepeater(PlaceHolder1, 0);
Repeater repeater1 = (Repeater)PlaceHolder1.FindControl("Repeater1");
if (repeater1 != null)
...
hi evary one
I have one class.I need the same instance of the same class at two differnt
pages with previous values assigend to that instance.?
so how to maintain the value of a instance b/w two pages....
Its very urgent ..pls suggest something..?]
...
I have a MultiView control which has a View in which a DataList is filled like this:
<asp:DataList ID="DataList6" runat="server" DataSourceID="SqlDataSource11" Width="100%">
<ItemTemplate>
<!-- rendering is left out to keep this sample simple -->
</ItemTemplate>
</asp:DataList>
The problem is that when I switch to another view of t...
I have an ASP.NET page where i will check whether the user has logged in to the system (by checking the session value) in the page load and if not logged in,it will show a jQueryUI dialog for login.
My ASPX page contains these script in the head tag
<style type="text/css">
body { font-size: 62.5%; }
label, input { display:block; }...
I have put update panel in detailsview insert template, in which put 2 controls(textbox and dropdown) and a button and on click of button, I have clear the textbox and clear seletion of dropdown, validator automatically on after postback, this should not be?
Have any one solution of this problem?
If I not use detials and put these contro...
I'm having a problem with CheckBoxList and OnSelectedIndexChanged:
<asp:UpdatePanel runat="server">
<ContentTemplate>
<asp:CheckBoxList
id="lstWatchEType"
runat="server"
DataTextField="DescriptionText"
...
I am trying to convince my web server admins to upgrade our version of the .NET framework from 2.0 to 3.5. I was wondering what are the best reasons to upgrade, from a server admin prospective. Obviously, there are the over arching ideas of keeping up to date, security, and so forth. I am looking for some hard and fast reasons that will...
In a web application it would be ok if i declare the context of a entity framework model as static? it would be ok? its not recommended? why?
Thanks!
...
I have to write a service to monitor a complex system. I searched Google for some articles, but didn't find exactly what I was looking for. Does anyone have any good resources for writing a service to monitor a complex system?
...
I'm struggling to find a solution for a weird issue with ASP.Net Menu control, when used in conjunction with Master Pages.
When the user navigates to a page - via. the menu - which inherits from the Master Page, the entire menu just expands and flashes across the screen. Collapses immediately and the page is rendered....
Causes some fli...
Hi,
ASP.NET seems to be generating its own onclick event for any buttons that are generated.
Looks like this
javascript:__doPostBack(
This is preventing jQuery from working correctly.
Does anyone know how to stop asp.net engine from doing this?
Many thanks
...
See also: http://stackoverflow.com/questions/428001/dropdowns-filled-with-same-list-item
After a day of tracing and debugging, I finally figured out that populating 3 DropDownLists with the same collection of items causes the last selected item to appear in all 3 lists.
This appears to be due to the 'selectedness' of an item being a ...
Hi guys,
I designing a web application using vs2008 and c#.
I already have done many versions of it and all of them seems to be working fine.
Yesterday i decided to replace de vs calendar with a ajax calendar and to do so i used ajaxcontroltoolkit. The new calendar is also working fine.
But the buttons i have in my form stoped to work...
When ASP.NET came out people started referring to ASP 3 (and below) as classic ASP. Does anyone do this when refering to ASP.NET (non MVC) in relation to ASP.NET MVC?
It seems awkward when answering questions refering to normal ASP.NET as the "non ASP.NET MVC ASP.NET!"
Please don't explain the differences between the two- I know that a...