Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
F

Faisal Khatri

@Faisal Khatri
About
Posts
70
Topics
30
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Unable to debug
    F Faisal Khatri

    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.

    ASP.NET debugging csharp visual-studio help question

  • NESTED MASTERPAGE
    F Faisal Khatri

    http://weblogs.asp.net/scottgu/archive/2007/07/09/vs-2008-nested-master-page-support.aspx[^] VIDEO TUTORIAL http://www.asp.net/aspnet-35/videos/how-do-i-create-nested-master-page-in-visual-studio-2008 WALKTHROUGH http://msdn.microsoft.com/en-us/library/bb547109.aspx[^]

    ASP.NET question

  • Unable to debug
    F Faisal Khatri

    I 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

    ASP.NET debugging csharp visual-studio help question

  • Unable to debug
    F Faisal Khatri

    Hi, 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?

    ASP.NET debugging csharp visual-studio help question

  • Problem with Client side validation in Accordion (AJAX toolkit) Control
    F Faisal Khatri

    well 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?

    ASP.NET tutorial csharp asp-net help question

  • Problem with Client side validation in Accordion (AJAX toolkit) Control
    F Faisal Khatri

    Hi 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,

    ASP.NET tutorial csharp asp-net help question

  • Embedding a PDF File in an ASP.NET Website(vb.net)
    F Faisal Khatri

    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

    ASP.NET csharp asp-net visual-studio help

  • Link in Textarea.......
    F Faisal Khatri

    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.

    ASP.NET database tutorial

  • Controls HTML viewsource is not displayed in UpdatePanel
    F Faisal Khatri

    I 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

    ASP.NET csharp html asp-net help

  • AJAX control Toolkit Accordion Control problem
    F Faisal Khatri

    I 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.

    ASP.NET sysadmin help

  • Problem with calling Javascript when using UpdatePanel AJAX
    F Faisal Khatri

    I 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.

    ASP.NET help question csharp javascript asp-net

  • Problem with calling Javascript when using UpdatePanel AJAX
    F Faisal Khatri

    HI, 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.

    ASP.NET help question csharp javascript asp-net

  • problem with datagrid and column
    F Faisal Khatri

    i 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.

    C# design help

  • How custom class can be converted to common value type?
    F Faisal Khatri

    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

    C# question help

  • ASP.NET content control problem in Master page architecture
    F Faisal Khatri

    Hi 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

    ASP.NET help csharp asp-net database wpf

  • Html tags problem in Textbox (very urgent)
    F Faisal Khatri

    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

    ASP.NET help csharp html asp-net sysadmin

  • Array of Controls in ASP.NET
    F Faisal Khatri

    Hi, 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

    ASP.NET csharp asp-net data-structures

  • ERROR: Name 'ConfigurationManager' is not declared
    F Faisal Khatri

    Hello 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

    ASP.NET help csharp database workspace

  • DATAGRID template column problem
    F Faisal Khatri

    WEll 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

    ASP.NET help csharp asp-net database announcement

  • DATAGRID template column problem
    F Faisal Khatri

    It is inside the datagrid. Its placed in the template column of the datagrid.. KHATRI

    ASP.NET help csharp asp-net database announcement
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups