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
A

AB7771

@AB7771
About
Posts
374
Topics
88
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Regular Expression
    A AB7771

    Hi all, I have scenario where a string can contain '$' only at the start, I was able to create a regular expression for this validation, but now another scenario is the same string can be repeated by a ',' delimiter. Now what happens is since I don't allow the '$' in the string except for the first position, when I repeat the same string after ',' starting with '$' the validation fails. Is there anyway in which we can restrict a character uptil some delimiter and then again allow it? Any pointers would be appreciated.

    Thanks & Regards, Pramod "Everyone is a genius at least once a year"

    JavaScript regex question

  • Multilingual support for Web Application
    A AB7771

    Thanks for your reply Rahul, I tried the resource file approach but somehow the label text is not changing... Is there something that I am missing?

    Thanks & Regards, Pramod "Everyone is a genius at least once a year"

    ASP.NET help question learning

  • Multilingual support for Web Application
    A AB7771

    Hi All, I want to support multiple languages in my web application, here are few queries that I have 1) Do I need to install the fonts for those languages? 2) Using resource file will help me to change the images and text on the page for that language. 3) Is the Operating system involved anywhere in this process, e.g. if my application is being accessed by a person in China with a Chinese OS installed on his machine, will it affect? Expecting your expert comments on the above.

    Thanks & Regards, Pramod "Everyone is a genius at least once a year"

    ASP.NET help question learning

  • Returning Huge XML data from procedure
    A AB7771

    it doesn't throws any errors, now I have changed and tried using a DataReader and that works. The XML contains more than 2000 lines and file size is just 83KB. Somehow the DataReader can perform the operation, but the DataAdapter is not filling the datatable. Is there some kind of size limit?

    Thanks & Regards, Pramod "Everyone is a genius at least once a year"

    C# oracle xml help

  • Returning Huge XML data from procedure
    A AB7771

    Hi, I have procedure which returns huge xml data in ref cursor from Oracle procedure, When the procedure is executed in Toad, it works fine, But when my method calls the procedure it returns an empty row in the datatable. any help would be appreciated.

    Thanks & Regards, Pramod "Everyone is a genius at least once a year"

    C# oracle xml help

  • Panel displayed from UserControl
    A AB7771

    I have done the same, but the problem is during page rendering the Panel is rendered for few seconds and then goes off... I don't want the panel to be displayed until the button is clicked.

    Thanks & Regards, Pramod "Everyone is a genius at least once a year"

    ASP.NET css help question

  • Panel displayed from UserControl
    A AB7771

    Hi all, I have created a user control which has a grid on a Asp:Panel, and a button. When the user control is placed on a page only the button will be displayed and on the click of this button the panel will be displayed as a popup using ModalPopupExtender. This page postbacks to itself on another button, during this event the Panel is displayed for a second and then goes off. How can that be avoided? I don't want the Blank Panel to displayed while page load. I have already tried setting the panel's visibility in various events of page life cycle to avoid it... but none works. Any help or direction would be appreciable. Thanks, AB

    Thanks & Regards, AB "Everyone is a genius at least once a year"

    ASP.NET css help question

  • Creating a Wizard and managing the data across the different screens
    A AB7771

    Hi all, I am working on creating a Wizard in asp .net, The user can access the different screens of the wizard and enter data. I want to handle this huge data, either in memory or can also save it to the database when navigated from the screen. I would like to know what would be the various ways to do the above. Thanks, Pramod

    Thanks & Regards, Pramod "Everyone is a genius at least once a year"

    ASP.NET csharp database performance

  • Datagridview Insert
    A AB7771

    You can get the DataGridViewRow of the datagridview and get the data from the cells of the row... Hope that helps...

    Thanks & Regards, Pramod "Everyone is a genius at least once a year"

    modified on Tuesday, February 23, 2010 7:43 AM

    C# database tutorial question

  • Display Images on Page from Database
    A AB7771

    Hi all, I googled a lot and found that to display images from database we need to fetch it from DB and Convert it to Byte[] and then pass it to Response.BinaryWrite() method. But this is not working for me. Can anyone please help me wid this?

    Thanks & Regards, Pramod "Everyone is a genius at least once a year"

    ASP.NET database help question

  • Call Javascript and asp .net click event also
    A AB7771

    have done that but it gives compilation error...

    Thanks & Regards, Pramod "Everyone is a genius at least once a year"

    ASP.NET csharp javascript question announcement

  • Call Javascript and asp .net click event also
    A AB7771

    Hey all, I want to call a javascript function and also the click event that is present in the code behind for an ASP ImageButton. I am using AjaxUpdate Panel and the Click event of the image button is registered for the auto update of the Ajax panel. How do we do that?

    Thanks & Regards, Pramod "Everyone is a genius at least once a year"

    ASP.NET csharp javascript question announcement

  • Ajax implementation
    A AB7771

    I dont want to call a webservice method. I want to call a Code behind method of the page.

    Thanks & Regards, Pramod "Everyone is a genius at least once a year"

    ASP.NET csharp javascript sysadmin algorithms tutorial

  • Ajax implementation
    A AB7771

    Hi all, I have been searching for Ajax implementation in ASP .net, I want to call a server side method from Javascript, but I am not able to find an example of that. I don't want to use a webservice or webmethod. Please provide with some links where i can get a proper implementaion of AJAX in ASP .Net.

    Thanks & Regards, Pramod "Everyone is a genius at least once a year"

    ASP.NET csharp javascript sysadmin algorithms tutorial

  • GridView DataBind, Adds an extra row to the gridview.
    A AB7771

    I am binding a dataset to a Gridview. Gridview1.DataSource = dtTable; GridView1.DataBind(); And in the GridView1_RowCreated() method I add the usercontrol for each row. TableCell cell = new TableCell(); e.row.cells[0].Add(LoadControl("~/Usercontrol1.ascx")); Hope that clears it.

    Thanks & Regards, Pramod "Everyone is a genius at least once a year"

    ASP.NET help question

  • Javascript not firing in checkbox change
    A AB7771

    var panelControl = document.getElementById(panelControl); Please pass the actual proper id to the method. I guess it should be panelControlId

    Thanks & Regards, Pramod "Everyone is a genius at least once a year"

    ASP.NET javascript sysadmin tools help question

  • GridView DataBind, Adds an extra row to the gridview.
    A AB7771

    Hi all, I am trying to bind a datatable to a Gridview, In each row i add a usercontrol, The table has 8 rows, The problem is when i call the GridView.Databind() method, and extra row is added to the gridview i.e. the gridview displays 9 rows on the page. What could be the cause of this?

    Thanks & Regards, Pramod "Everyone is a genius at least once a year"

    ASP.NET help question

  • user Controls in Visual Studio 2008
    A AB7771

    I re-installed VS but to no use.... i found on some forum that the VS Web Authoring component should be removed, but after doing this i am not able to view the page in design view. Any other options or resolutions???

    Thanks & Regards, Pramod "Everyone is a genius at least once a year"

    ASP.NET visual-studio help question csharp winforms

  • user Controls in Visual Studio 2008
    A AB7771

    Hi all, I don't know whether i should ask this question in this forum, I am using VS 2008 proff edition trial version with sp1, while working on an application, i created a user control, as soon as i place the register tag for the user control in my page, VS hangs and doesn't recovers back. I need to restart my machine, the same problem also occured when i tried to add a master page to my web page. Has anyone faced this problem? Any help in this regards will be appreciated.

    Thanks & Regards, Pramod "Everyone is a genius at least once a year"

    ASP.NET visual-studio help question csharp winforms

  • Javascript call
    A AB7771

    Thanks Navaneeth, Have u ever worked on user controls and AJAX toolkit?

    Thanks & Regards, Pramod "Everyone is a genius at least once a year"

    ASP.NET csharp javascript help
  • Login

  • Don't have an account? Register

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