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
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
C

codingrocks

@codingrocks
About
Posts
137
Topics
79
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Windows service deployed in server is stopping abruptly
    C codingrocks

    I have developed a windows service and deployed the same in the server. This service is running in local machine without any issues. The service in the server, stops abruptly and below are some errors that I could capture in the EventViewer ================================================== Faulting application name : MyAppService.WindowsService.exe, version: 1.0.0.0, time stamp: 0x5537a89d Faulting module name : clr.dll, version:4.0.30319.18063 Exception Code : 0xc00000fd Faulting application path : D:\App\MyAppService.WindowsService.exe Faulting module path : C:\windows\Microsoft.NET\Framework\v4.0.30319\clr.dll ================================================== Anyone please provide some details on how to resolve this. Thanks in advance.

    CodingRocks ASP.NET,C#.NET Programmer BANGALORE "Winners don't do different things. They do things differently. ...

    Hosting and Servers csharp asp-net dotnet sysadmin tutorial

  • INSERT - SELECT QUERY Help Needed.
    C codingrocks

    I have the following tables. Table SS SID SNAME == ===== 1 AAA 2 BBB 3 CCC Table PP PID PNAME == ===== 1 Phase1 2 Phase2 3 Phase3 Third table (COMP) data may look like the following. ID SID PID == === === 1 1 1 2 1 2 3 1 3 4 2 1 5 2 2 ID here in third table is autoincrement. I need to insert a new record in SS table and it can have mapping to many Phases in PP table. So I want to write a INSERT INTO COMP (col1,col2) SELECT (col1,col2) FROM table... So ultimately new records needs to be inserted into the last table with a SID map and different PID. How can I accomplish the same? Thanks in advance.

    CodingRocks ASP.NET,C#.NET Programmer BANGALORE "Winners don't do different things. They do things differently. ...

    Database csharp question asp-net database help

  • Add an '&' (ampersand ) character to a string.
    C codingrocks

    I have a string in which I need to insert an ampersand (&) character. I tried the below

    if(strName == "AB")
    {
    strName = "A&B";
    }

    But my result is showing as A&B Can you suggest me what is wrong that I am doing? Thanks,

    CodingRocks ASP.NET,C#.NET Programmer BANGALORE "Winners don't do different things. They do things differently. ...

    ASP.NET csharp question asp-net

  • Gridview Column colors
    C codingrocks

    I have a gridview control in aspx page. Suppose I have 3 columns, I need to have different colors for each column. I want to set different colors for three different columns in the gridview. Is it possible to set the colors in aspx page. I have tried implementing, but could find any solution. Please suggest me a way to achieve this...

    CodingRocks ASP.NET,C#.NET Programmer BANGALORE "Winners don't do different things. They do things differently. ...

    ASP.NET csharp asp-net

  • Problem while exporting and Importing using Gridview to Excel
    C codingrocks

    My new application needs export records from gridview to Excel file, which I have done already. But when I tried editing the same excel file, it saves a new folder and css stylings in excel to the new folder. I need to import the exported excel file with some changes in data to the application. But I found that, while saving for export it saves as web compatible excel file. I want to save the file as plain excel file, like the one Microsft Report Control exports. Any help and suggestions would be appreciated. Thanks, CodingRocks

    CodingRocks ASP.NET,C#.NET Programmer BANGALORE "Winners don't do different things. They do things differently. ...

    ASP.NET csharp help css asp-net

  • report ....
    C codingrocks

    Designing a RDLC report file and shipping into the winform application would be easy. Even if you want to change the report design, it does not require a solution build again. You can easily go ahead and change the report design. Copy the rdlc report file to the application folder and see the changes are reflecting or not.

    CodingRocks ASP.NET,C#.NET Programmer BANGALORE "Winners don't do different things. They do things differently. ...

    C# database question mysql sql-server oracle

  • Ajax
    C codingrocks

    Check this link... http://www.asp.net/ajax/[^]

    CodingRocks ASP.NET,C#.NET Programmer BANGALORE "Winners don't do different things. They do things differently. ...

    ASP.NET help

  • ModalDialogBox for Previewing HTML and formatted Text
    C codingrocks

    I am developing a web application where, I have a content editor and preview button. On click of the Preview button, i am showing a ModalDialogBox to see the changes in the editor. But my concern is the content can be so lengthy and sometimes, 40 to 50 lines of text. How can I pass the editor content to the modaldialog box in this case. The preview I am trying to implement is similar to Codeproject message preview. Any help would be appreciated.

    CodingRocks ASP.NET,C#.NET Programmer BANGALORE "Winners don't do different things. They do things differently. ...

    ASP.NET csharp html asp-net help question

  • Edit Excel Sheet Online and Saving Changes?
    C codingrocks

    I am using Microsoft.Office.Interop.Owc11 for the excel editing. But when I tried to open the file using the following code in Page Load event

    public string SSxml;
    protected void Page\_Load(object sender, EventArgs e)
    {
        SpreadsheetClass spsh = new SpreadsheetClass();
       
        string str = Server.MapPath(".") +"\\\\test.xls";
           
        SSxml = spsh.XMLData;
        
    }
    

    I am getting an error saying "Exception from HRESULT: 0xE0040104" How can I fix this issue. I want to open the test.xls file as XMl Spreadsheet now.

    CodingRocks ASP.NET,C#.NET Programmer BANGALORE "Winners don't do different things. They do things differently. ...

    ASP.NET csharp asp-net help question

  • Edit Excel Sheet Online and Saving Changes?
    C codingrocks

    Hello, I use ASP .NET to publish office document on the web. My problem is I want to modify Excel file through IE (without downloading them). I need to open the Excel sheet using IE and do all the functions available in Excel like grouping, merging cells and changing cell colors etc... Has anybody got some tips for me ? Any suggestions would be appreciable?

    CodingRocks ASP.NET,C#.NET Programmer BANGALORE "Winners don't do different things. They do things differently. ...

    ASP.NET csharp asp-net help question

  • Textbox Focus Problem
    C codingrocks

    txtAddcontrol.Attributes.Add("onkeypress", "javascript : return Click_Enter('" + ibtnSave.ClientID + "',event);"); try this...Hope it should be KeyPress event....

    CodingRocks ASP.NET,C#.NET Programmer BANGALORE "Winners don't do different things. They do things differently. ...

    ASP.NET help java javascript question

  • Error:There is no source code available for the current location. show disasembly
    C codingrocks

    Hope you have put the Ajax ControlToolkit Dll in the wrong place. Please check whether your Ajax extensions installation what correct?

    CodingRocks ASP.NET,C#.NET Programmer BANGALORE "Winners don't do different things. They do things differently. ...

    ASP.NET help announcement

  • Passing value through Querystring from Gridview record.
    C codingrocks

    In my application I want to open a new window on click of a gridview record. The hyperlink is in an ItemTemplate Column. On click of that i need to open a new window passing the rid also in querystring how can i do this? <asp:HyperLink ID="hRequestID" runat="server" Text='<%# Eval("Request ID")%>' NavigateUrl='<%# DataBinder.Eval(Container, "DataItem.Request ID","SearchEdit.aspx?rid={0}") %>'> </asp:HyperLink>

    SAJAN A PILLAI ASP.NET,C#.NET Programmer BANGALORE "Winners don't do different things. They do things differently. ...

    ASP.NET csharp question asp-net sysadmin docker

  • PagerSettings for Grid not working as intended [modified]
    C codingrocks

    I am doing an ASP .NET application, where I want to display my grid view as with following requirements. Paging is working for the grid, and page size is set to 10. After 10 pages, it shows "..." three dots. I want to show next there always. If I go to page number 15, it should show the first page as Previous. If i go to the 11 page now it is showing some thing like this First ... 11 12 13 14 15 16 17 18 19 20 ... Here is my Pagerstyle settings for the grid <pagersettings firstpagetext="First" lastpagetext="" mode="NumericFirstLast" nextpagetext="&quot;Next&quot;" /> Please help to fix this...Thanks in advance.

    SAJAN A PILLAI ASP.NET,C#.NET Programmer BANGALORE "Winners don't do different things. They do things differently. ...

    modified on Tuesday, April 21, 2009 12:11 AM

    ASP.NET csharp help css asp-net business

  • Ajax ModalPopUpExtender Not Hiding on Load?
    C codingrocks

    I am using an Ajax ModalPopUp Extender where it shows on a button click. On button click, it shows the popup modal extender and opens a Windows dialog box with Open Save and Cancel on top. On click of Open or Save or Cancel, I want to hide the popup modal extender. How can i achieve this.

    SAJAN A PILLAI ASP.NET,C#.NET Programmer BANGALORE "Winners don't do different things. They do things differently. ...

    ASP.NET

  • Textbox value must be numeric and non zero
    C codingrocks

    Put the validation expression as validationexpression=\d{0,10} its only accepting only integer values in the range 0 to 10 or Change it to ValidationExpression="[0-9]*"

    SAJAN A PILLAI ASP.NET,C#.NET Programmer BANGALORE "Winners don't do different things. They do things differently. ...

    modified on Wednesday, March 4, 2009 5:25 AM

    ASP.NET

  • Google Map API Integration in ASP .NET web page
    C codingrocks

    I have implemented Google maps on to an ASP .net web page. I have referenced the Google Map API also. I want to know some issues before going to deploy it. I do not have access to www.maps.google.com , then how can I get the google maps get loaded into my ASP .net application.

    SAJAN A PILLAI ASP.NET,C#.NET Programmer BANGALORE "Winners don't do different things. They do things differently. ...

    ASP.NET csharp asp-net com json question

  • Need IIS for running ASP pages...?
    C codingrocks

    I am not an admin of my office PC. I have IIS installed, but as i do not have admin priveleges I cannot create a virtual directory. Is it very necessary that I should need IIS to run classic ASP page on my machine. When i opened it in VS 2005 and try to run this, It says an error,

    This type of page is not served.

    Any help would be appreciated.

    SAJAN A PILLAI ASP.NET,C#.NET Programmer BANGALORE "Winners don't do different things. They do things differently. ...

    Web Development csharp help asp-net visual-studio windows-admin

  • how to work with Treeview
    C codingrocks

    www.infragistics.com/ [^] Here is the link.... Download it may take some time.....After installation you can have a look at the samples provided. and easily go for making a treeview... One more question...? If the application you are building is for any client or other company purpose, you cannot go for these Third party controls. They wont be allowing you to install these on their server to support the application. If its for personal use, You can go for that and even better GUI providing controls like RADControls are also available here... www.telerik.com/products/aspnet-ajax.aspx [^]

    SAJAN A PILLAI ASP.NET,C#.NET Programmer BANGALORE "Winners don't do different things. They do things differently. ...

    ASP.NET help tutorial

  • how to work with Treeview
    C codingrocks

    If you are able to use third party control toolkit, I would suggest you to have Infragistics NetAdvantage 2007 controls. You can have the best looking tree view in your application in website.

    SAJAN A PILLAI ASP.NET,C#.NET Programmer BANGALORE "Winners don't do different things. They do things differently. ...

    ASP.NET help tutorial
  • Login

  • Don't have an account? Register

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