Web Forms :: Radiobutton Displaying Too Wide On Page?

Apr 11, 2010

I have a asp radiobutton on my page and when I display the page it appears that the border for he radiobutton is 50px and the text for the radiobutton is shoved down to the next line. I have the markup for the radiobutton below. When I use a standard HTML radiobutton it appears correctly on the page. See markup below:

[code]...

View 5 Replies


Similar Messages:

Web Forms :: Method For Specifying Application Wide Settings?

Apr 5, 2010

I want a separate config file (not app.config) that stores style for various controls in my web application. For example i want to specify the CSS file that modifies all instances of GridView in the website. what is best practice?

View 2 Replies

Web Forms :: Using Application Wide Master Pages?

Jan 12, 2011

i added this entry in my web.config file

pages
masterPageFile="~/default.master"

so that all my content pages (.aspx) in my application could use default.master as their master page,

i read we do this so that we don't have to mention the MasterPageFile="~/default.master" everytime in all the .aspx content pages, but , my query is whenever i add a new .aspx page in my website from VS 2010, it dosen't automatically add MasterPageFile="~/default.master" to the Page header, am i missing something.

View 2 Replies

Web Forms :: Radiobutton Event Writes To An XML File But Does Not Show The Changes On The Page

Jan 3, 2010

ASP.net radiobutton change event writes the new selection to an XML file and that needs to be shown on the page but does not show the changes on the page since the page load occur before the event fires. give some insight how to resolve this.

View 2 Replies

Web Forms :: Avoid Page Refresh (Reload) On RadioButton Click

May 7, 2015

i have problem with radiobutton is in autopostback=true.

if i check rb1 page is refresh. after using update panel also i face the same problem in my code autopostback=true is compulsary beacause some controls open depending on this option..

View 1 Replies

Web Forms :: Master Page Layout Not Displaying On Content Page?

Mar 27, 2010

I am new to ASP.NET development and I am running into an issue using master/content pages. I have a master file that basically defines all of the layout for my site. The only thing that the content pages are supposed to display is some very basic text/images/html, made available by one ContentPlaceHolder control in the master file.

My problem is in the display. When I view the content page, none of the layout that should be inherited from the master page is displayed -- I end up with just a 'blank' page. What seems odd, is that if I look at the Design View in VS 2005, the content page appears to show the layout that is defined in the master. Here is a sample of the source for the master and one of the content pages...

Master Page: content_pages.master
<%@ Master Language="VB" CodeFile="content_pages.master.vb" Inherits="content_pages" %>
<!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" >
<head id="Head1" runat="server">
... links to CSS & Javascript files here (removed for simpler display in this post) ...
</head>
<body>
<form id="form1" runat="server">
<div id="content_holder">
<div id="content_background_top"></div>
<div id="content_background_middle">
<div id="header">
<div id="menu">... Menu Item Code (removed for simpler display in this post) ...</div>
</div>
<div id="gray_fade_bar"></div>
<div id="site_page_main">
<asp:ContentPlaceHolder id="PageContent" runat="server"></asp:ContentPlaceHolder>
</div>
<div id="footer">Footer Text Here</div>
</div>
<div id="content_background_bottom"></div>
</div>
</form>
</body>
</html>

Content Page: locations_odessa.aspx

<%@ Page Language="VB" MasterPageFile="~/content_pages.master" AutoEventWireup="false" CodeFile="locations_odessa.aspx.vb" Inherits="locations_odessa" title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="PageContent" Runat="Server">
Page content will display here.
</asp:Content>

View 3 Replies

Where To Store And Set User Site Wide Data In MVC

Feb 16, 2010

I have an application in which a user can choose from different (learning)groups. User has only access to registered groups. When the user enters the site, he can choose (in a dropdown) which group he wants to see, so the complete site filters content related to that group. So every controller needs to access this global "group" object.What is the best way to do this in ASP.NET MVC? I've thought about a BaseController or ActionFilters. Is there any other best practice?I've build a WebForms application and there I used a BasePage so that any other page has access to the group.

View 2 Replies

C# - How To Create A Variable With Project-wide Scope

Feb 28, 2011

I want to declare a variable in such a way that I can access that particular variable and its value in all the asp pages in the project. Can anyone tell me how to declare a variable in C# such that it has project-wide scope?

View 8 Replies

What Folder To Put Site-wide Functions/classes In .NET MVC

Mar 22, 2010

I'm new to ASP.NET MVC and i want to create a class to contain site wide functions for my application.what is the best practice to do this?
where should i create the class ? in what folder?should i create a new folder?

edited:I need a function that return base uri, and it have be available to call from any controller.A date formatting function, or any other simple logic , but is going to be used repetitively

View 2 Replies

ReportViewer Control Rendering Too Wide On WebForm?

Feb 8, 2011

I have a ReportViewer (ver 10) that is rendering far wider than the box it's meant to display in. The problem is that the Parameters area is appearing much wider than the actual report area. If I put an "overflow: auto" in the div that contains the ReportViewer control, then I get a horizontal scrollbar at the bottom, but then in order to click the "View Report" button I have to scroll way over, thus moving the entire report.

Ideally I would like the Parameters area to stay stationary, but a horizontal scrollbar to appear on the report area so that it can be scrolled if necessary. What is the best way to go about doing this?

Here's what my control setup looks like now:

<div class="reportingFrame" style="text-align: center; width: 100%; overflow: auto">
<sam:ReportViewer ID="UiReportViewer" runat="server"
AsyncRendering="False"
ProcessingMode="Remote"
ShowExportControls="False"
ShowPrintButton="False"
ShowPromptAreaButton="False"
ShowRefreshButton="False"
SizeToReportContent="True"
Width="100%" />
</div>

Currently I'm looking at some jQuery tricks to reformat the output from the ReportViewer control into a better system

View 1 Replies

Data Controls :: How To Pass Value Of RadioButton Inside Repeater To Other Page

May 7, 2015

I have a repeater in which there is a Row which brings a value of Salary from a table. And there is a condition:

1)When user adds the salary value in a textbox, there are two radio buttons, YES and NO,

I want, whenever user selects the yes option, the salary value should be displayed in the repeater.

see the code for the Repeater and Textbox, Radiobuttons:-

Repeater code:-
 
<asp:Repeater ID="rep_Jobs" runat="server">
<ItemTemplate>
<h3 class="parag"><%# Eval("Position") %> - <%#Eval("Location") %></h3>
<div>

[Code]....

Note: The textbox of salary and Repeater is two different page.  What should I do to show in repeater when the radiobutton is selected YES.

View 1 Replies

Web Forms :: RadioButton In Page - Object Reference Not Set To Instance Of Object

May 7, 2015

I use radiobutton in my page

<asp:RadioButtonList ID="RBLType" runat="server" RepeatDirection="Horizontal" TextAlign="right"
CssClass="Drbgalary">
<asp:ListItem Value="دارای گالری" Text="دارای گالری"><span style="color:#676767">دارای گالری</span></asp:ListItem>
<asp:ListItem Value="دارای محصول" Text="دارای محصول"><span style="color:Red">دارای محصول</span></asp:ListItem>
</asp:RadioButtonList>

[code]....

but I run page below error happen.Object reference not set to an instance of an object.An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.  Exception Details: System.NullReferenceException: Object reference not set to an instance of an object. Source Error: 

Line 91:  if (_dr["storetype"].ToString().Trim() == "دارای محصول")Line 92:   {
Line 93:  RBLType.Items.FindByText("دارای محصول").Selected = true;Line 94: }
Line 95:  else {

View 1 Replies

Store / Access - Application Wide Variables Or Globals In Asp.net

Feb 8, 2010

What is the recommended or usual way an ASP.net web application(in C# language) can store/access values that are needed accross the various pages in a website. For example a basic company website might need the company's name and other related information available to multiple pages. Where do I declare these variables/values and how do I access them. Coming from c++ application programming I would usually store such data in a Singleton class object.

View 5 Replies

Implement An App-wide Error Handling Mechanism For MVC2 Web App

Mar 6, 2011

I want to implement an app-wide error handling mechanism for an ASP.NET MVC2 web app. What is the standard way to do this?

I want to make sure that the user never sees a 404 error, a 500 error, or a core dump.

View 2 Replies

Page Layout Is Not Displaying Properly In QA Machine But Is Displaying Correctly In Dev Machine

Apr 21, 2010

ASP.Net Page layout is not displaying properly in QA machine but is displaying correctly in Dev Machine. What could be the issue? We are using ASP.Net 2.0

View 1 Replies

Databases :: How To Do Wide Search And Export The Records To Excel File In C#

Aug 4, 2010

This is my MYSQL database connection :-

public
static
OdbcConnection Connection =
new
OdbcConnection("Driver={MySQL ODBC 5.1 Driver};Server=localhost;Database=jdmcrm; User=root;Password=admin;");

My table name is "customer" and fields liek customerId , companyName , address and date ;

How to do wide search and export the records to excel file ? im quite new in asp.net .

View 1 Replies

Edit Gridview Row With Drop Down Lists Gets Too Wide - Use Popup Panels Instead?

Apr 16, 2010

I have a series of GridViews in a Tab Panel - databound to a generic List of Business Objects. The columns in the Gridview are all similar to the following:

<asp:TemplateField HeaderText="Company" SortExpression="Company.ShortName">
<ItemTemplate>
<asp:Label ID="lblCompany" runat="server" Text='<%# Bind("Company.ShortName") %>'></asp:Label>
</ItemTemplate>
<EditItemTemplate>
<asp:DropDownList ID="ddlCompany" runat="server"></asp:DropDownList>
</EditItemTemplate>
</asp:TemplateField>

The GridView generates the "Edit" link at the beginning of the row, all the events fire ok. The problem is that the data is getting long. When in 'display mode', it's fine because the GridView control is smart enough to break some text into multiple lines (in particular Project, Title and Worker names can get pretty long). The problem come in editing mode. Drop-down lists DON'T break entries into multiple lines (for obvious reasons). Going into Edit ode on a row in the Gridview can make the Griview expand horizontally to twice the screen size (blowing through the width limits in the Master page and CSS but that's only a related problem).
What I need is something like the ModalPopup - but trying to tie it to an ID in an EditItemTemplate gives me errors when the page renders (because the 'ddlXXXX' doesn't exist at the time). In addition I don't know how to dynamically populate the panel so that I can get a response from it (like the ID of the Company they selected)
.
I'm also trying to avoid javascript and would like this to be a 'pure' aspx/code-behind solution (for simplicity's sake among others).
All the examples I find are of Modal Popups with the panels pre-defined. Even if it (the popup panel) were something like a list of checkboxes, it could be databound to the SortedList I have ready to go and an OK/Cancel button combination to accept or ignore things. I'm just not sure of what goes where.

EDIT: Final solution looks as follows:

<asp:TemplateField HeaderText="Company" SortExpression="Company.ShortName">
<ItemTemplate>
<asp:Label ID="lblCompany" runat="server" Text='<%# Bind("Company.ShortName") %>'></asp:Label>
</ItemTemplate>
<EditItemTemplate>
<asp:LinkButton ID="lnkCompany" runat="server" Text='<%# Bind("Company.ShortName") %>'></asp:LinkButton>
<asp:Panel ID="pnlCompany" runat="server" style="display:none">
<div>
<asp:DropDownList ID="ddlCompany" runat="server" ></asp:DropDownList>
<br/>
<asp:ImageButton ID="btnOKCo" runat="server" ImageUrl="~/Images/greencheck.gif" OnCommand="PopupButton_Command" CommandName="SelectCO" />
<asp:ImageButton ID="btnCxlCo" runat="server" ImageUrl="~/Images/RedX.gif" />
</div>
</asp:Panel>
<cc1:ModalPopupExtender ID="mpeCompany" runat="server"
TargetControlID="lnkCompany" PopupControlID="pnlCompany"
BackgroundCssClass="modalBackground" CancelControlID="btnCxlCo"
DropShadow="true" PopupDragHandleControlID="pnlCompany" />
</EditItemTemplate>
</asp:TemplateField>

And in the code-behind, lstIDLabor is the generic List of data lines (of which Company is one of the properties that is also a business object) that is bound to the GridView:

Sub PopupButton_Command(ByVal sender As Object, ByVal e As CommandEventArgs)
Dim intRow As Integer
Dim intVal As Integer
RestoreFromSessionVariables()
Select Case e.CommandName
Case "SelectCO"
intRow = grdIDCostLabor.EditIndex
Dim ddlCo As DropDownList = CType(grdIDCost.Rows(intRow).FindControl("ddlCompany"), DropDownList)
intVal = ddlCo.SelectedValue
lstIDLabor(intRow).CompanyID = intVal
lstIDLabor(intRow).Company = Company.Read(intVal)
Case Else
'
End Select
MakeSessionVariables()
BindGrids()
End Sub

View 1 Replies

DataSource Controls :: Create And Handle Wide Tables Programmatically?

Apr 15, 2010

I have a set of keywords (about 1000 keywords), and I want to build a wide table, up to 1000 columns:

+each column corresponding to a keyword

+each row will represent an article document, which each cell will be the frequency of the keyword in the document

How to do that in a programmatically way? (e.g., using Linq and C#)

View 4 Replies

Visual Studio :: Aspx File Rename Site Wide?

Apr 15, 2010

can I change an aspx file name site wide. i.e. every instant of it any where in the site?

View 4 Replies

AJAX :: How To Avoid Page Refresh On Radiobutton List Selected Index Changed

Jan 25, 2010

I have a radio buttonlist in my webpage with 2 list items, when I click the 2nd list item I want to change the visibility of a text box so it wore the code

protected void rbList_SelectedIndexChanged(object sender, EventArgs e)
{
if (rbList.SelectedIndex == 0)
{
txtPresentlyUsing.Visible = false;
}
if (rbList.SelectedIndex == 1)
{
txtPresentlyUsing.Visible = true;
}
}

and its working fine but the page got refreshed how can I avoid this if I want to use ajax how can I implement it?

View 16 Replies

Web Forms :: Ad Displaying Ad In New Page?

Aug 30, 2010

i used ad rotator to show ads in my project , i calculated the number pf clicks in separate page , my coding is as below

if (Request.QueryString.Count > 0)
{
oAds = new OMSAdManagement();
int id = Convert.ToInt32(Request.QueryString["ID"].ToString());
oAds = SiteBase.GetAdsbyAdID(id);
if(oAds.MaxNumberofClick !=0)
{
if (oAds.NumberofClick < oAds.MaxNumberofClick) SiteBase.UpdateAdClicksbyAdID(oAds);
else
{
oAds.IsActive = false;
SiteBase.UpdateAdActivebyAdID(oAds);
}
}
string st = Request.UrlReferrer.ToString();
Response.Redirect(st, false);
Response.Write("");
}

i want to redirect to same page after updating the number of clicks , and wand to show adds in new window, but i cant do the both , only one line is workin this string st = Request.UrlReferrer.ToString(); Response.Redirect(st, false); or this Response.Write(""); not the both how can i solve the problem.

View 1 Replies

Web Forms :: Displaying Images In Web Page?

Mar 30, 2010

In my web application, i need to display Images(.jpg,.tif,.png,.bmp etc.,) and also Text Files(.txt,.doc,.xml,.html etc.,) in the web page. Can you suggest me, the best way to do this? NOTE: The Web Page should be compatible with Mobiles Phones(Iphone, Android)

View 5 Replies

Web Forms :: Displaying Login Name On Next Page?

Dec 6, 2010

I would like to create a login form, after logining in i would like the name of the person login in to display in a welcome message on the second page.

View 8 Replies

Web Forms :: Displaying A Page Over Another Page?

Aug 25, 2010

I have a requirement something like On clicking a link on a page another page will open dymanically on that page only.the page will be like module popup where clicking a certain link download of documents will take place with out postback.The page can be iframe which can be manipulated with java script to place in centre

View 1 Replies

Web Forms :: Displaying Custom Error Page

Sep 23, 2010

For certain parts of the site the allow inserting and updating of data we have some try / catch logic in place.. Now we would like to display a custom error page explaining what didnt happen. Instead of just a generic message that says error occurred. Here is 1 error that is generated due to Primary Key constraints, we woudl like to redirect them to our error.aspx page which is already setup and configured in the web.config but within that page display a more user friendly detail message of why they got the error. In the example below, we may want to say, "There was an error with the "Access Insert" please make sure that the values you entered on the previous page are unique" thats just an example, but gives an idea of what we are trying to do.

[Code]....

View 4 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved