none of those. The problem is solved. That was some weired page problem. So I copied all the code and design to a new page and tried to execute, it works. I guess its just stupid creatiion of microsoft.
Faisal Khatri
Posts
-
Unable to debug -
NESTED MASTERPAGE -
Unable to debugI am running with the Play button given at the top Standard toolbar. So I am running it from IE and attaching it to debug. I repeat i am using IE7
-
Unable to debugHi, I have applied breakpoints in my application. The first breakpoint is on Page_Load and the second is on Button Click event. Similarly I have another breakpoint on a different page on its Page_Load method. None of them work. VS.NET does not invoke any of the breakpoint. I am using IE7 as my default browser and VS.NET 2008 is the framework. Can any one tell me what's wrong with this?? Please help?
-
Problem with Client side validation in Accordion (AJAX toolkit) Controlwell i almost solved it but now having another issue. if (Page_ClientValidate() ==false) { //alert('Pottey'); alert(Page_ClientValidate('First')); if (Page_ClientValidate('First')==true) { accordianControl.set_SelectedIndex(0); alert('Student Household Size is not verified.'); return false; } if (Page_ClientValidate('Second') == false) { accordianControl.set_SelectedIndex(1); alert('Student Number of College is not verified.'); return false; } so on Page_ClientValidate('First') it always gives true. By the way First and Second are my validationgroup of ASP.NET radiolist control Any help?
-
Problem with Client side validation in Accordion (AJAX toolkit) ControlHi I have an Accordion control in my page and in that Accordion control i have around 22 AccordionPanel. In each panel i have several ASP.NEt controls like radiobutton list, textboxes and so on. At the end of the page I have a submit button, On submit i would like to check that the radiobuttonlist in each of the accordionpanel is selected. If not it should display a message. I would like to do a client side validation. I am trying to use custom validator but it doesnt work. Please guide me how to do it? Thanks,
-
Embedding a PDF File in an ASP.NET Website(vb.net)What do u mean by embedding? Do u mean creating a PDF file on any user control event. Like Print button, when hit should create a PDF control. Let me know if i understand you correctly
-
Link in Textarea.......Try first saving the contents in HTML in the database. so whenever the information is retrieved it will automatically display the content and embed it automatically with HTML tags.
-
Controls HTML viewsource is not displayed in UpdatePanelI have a page which contains ASP.NET AJAX toolkit (Accordion). I have around 22 AccordionPanel. All the controls in my page is within UpdatePanel control. When i ecute the project and when the Accordion is visible on screen, i go to check its HTML view source but it does not display anything that is within UpdatePanel in HTML. In Accordion I have few more ASP.NEt controls like textboxes, RadioButton and lot more. Anyone can help how i will get the HTML of the controls. Thanks in advance
-
AJAX control Toolkit Accordion Control problemI am using AJAX control toolkit Accordion control on my page. In accordion pane i have added one pane and in that pane i put some header and content. My code below shows for header and content <Header> <div style="float: left; width: 100%;" class="head4"> 1. Household Size</div> </Header> <Content> <div style="float: left; width: 50%; background-color: #a9d4ff;"> <asp:Label ID="lbl_Stud_HouseholdSize" runat="server" Text="5"></asp:Label> </div> <div style="float: left; width: 50%; background-color: #afffaf;"> <asp:Label ID="lbl_Parent_HSize" runat="server" Text=""></asp:Label></div> <div style="float: left; width: 50%; background-color: #a9d4ff;"> <div style="float: left; width: 100%;"> <asp:RadioButtonList ID="rd_Shouseholdsize" runat="server" RepeatDirection="Horizontal" Width="70px" AutoPostBack="True" OnSelectedIndexChanged="rd_householdsize_SelectedIndexChanged"> <asp:ListItem Value="1">Valid</asp:ListItem> <asp:ListItem Value="0">Correction</asp:ListItem> </asp:RadioButtonList> </div> </div> </Content> The problem is when i execute, it does not show anything in pane. Just show the headers. Any solution will be helpfull.
-
Problem with calling Javascript when using UpdatePanel AJAXI have few issues. I checekd it and found that it is calling to JAvascript methid, but the problem is that that UpdatePanel does not show the complete HTML. It hides most of the stuff. So how to deal with that.
-
Problem with calling Javascript when using UpdatePanel AJAXHI, I am creating a questionair form. For that, I have a bunch of radioList inputs on my page. Those are ASP.NET controls. I am trying to call a javascript method which i have defined at the top of the page. But it fails to call that method and gives me some sort of a system is undefined error. I want to implement that if someone select an option 1 from radiobuttonlist control it should display an image. and if option 2 is selected text should be displayed. So how can i call a javascript method ?? please help.
-
problem with datagrid and columni dont understand what you are trying to ask. do you mean you would like to replace the column of the datagrid on runtime? Please explain your question.
-
How custom class can be converted to common value type?Hi, I am studying for MCTS and there i have a question fro practise purposes. The question is "Create a custom class that can be converted to common value types"? I have been trying to solve this since 1 week but can not get the soluution of it. Can any one help me with this answer... Thanks in advance Thanks
-
ASP.NET content control problem in Master page architectureHi all I am using ASP.NET 3.0 and I have a list box in content page. I am using Master Page architecture. I am binding data from the database into the listbox. but it gives me error of "object reference not set to an instance of an object". This is what I am doing.. ((ListBox)(this.FindControl("ctl00_ContentPlaceHolder1_lMondayFD1"))).DataSource = ds.Tables[0].DefaultView; Please guys any one can help me
-
Html tags problem in Textbox (very urgent)Hello everyone.. I am working on ASP.NET 2.0, I am getting one problem in inserting the form. In an asp.net webform page i have a textbox. I am providing an HTML tags in this textbox & then when i click any button or perform some server side task it corrupts the page and gives me error. I think it is not allowing to insert HTML tags in textboxes. Can anyone help me..plss its very urgent. KHATRI
-
Array of Controls in ASP.NETHi, I am creating an application on ASP.NET 2.0 & i want to upload mutliple pics on that. I have included around 10 uploader with the same Ids like: uplfile1 uplfile2 uplfile3 . . . . . uplfile10 Now in code I want to perform some action from these controls. I am using a for loop till count that represents how mnay controls are visible. I want to access uplfile1 from loop value. LIKE: for(int i=0;i
-
ERROR: Name 'ConfigurationManager' is not declaredHello everyone, I am using VB.NET 2005 and creating a code file in which i have declared a method of connecting to the Databse. In order to implement that I am getting my Database connection string value from web.config defined like this. In the code file I am using ConfigurationManager.ConnectionString("MySqlConn").ToString(), but its giving me error "Name 'ConfigurationManager' is not declared". I have already included System.Configuration namespace at the top. but it continously giving me error. Please guys/gals help me..its urgent.. KHATRI
-
DATAGRID template column problemWEll i tried with ItemCommand Event of the Datagrid but its not working. Because I am not able to define a command with that Checkbox so to match with the Command inorder to process with the checkbox. Can i have ur personal msn id..? so ill explain you by sending you a picture.. if you can help me..? KHATRI
-
DATAGRID template column problemIt is inside the datagrid. Its placed in the template column of the datagrid.. KHATRI