CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: cafedreamz

Search: Search took 0.02 seconds.

  1. How to Impersonate local system account in c#

    I am trying to start/stop a windows service in the code from a web application.The web application runs as IUSR_ComputerName, but this account does not have enough access rights to star/stop the...
  2. Re: How to show the data grids view in a tooltip?

    You will need to use the RowDataBound event of the gridview to access the tool tip field and bind it to the field you want to link it to.
  3. Replies
    1
    Views
    7,184

    Render LinkButton Control

    Hi All,

    I have the html shown below in my aspx page:
    <td>Method(Text,PostBackUrl)</td>

    Inside the Method, I am instantiating a linkbutton server control and then after adding the...
  4. Replies
    0
    Views
    540

    web parts issue

    Hi All,

    I created a simple web part using asp.net 2.0.If I run it using the Visual Studio web server the web part looks fine, but If I run the same web part on IIS i am not able to see the...
  5. Security exception with windows server 2003

    hi all,

    I am trying to access a web application built on the .NET 2.0 framework and I keep getting this error pop-up which asks me to select a debugger....

    The error is:...
  6. SSL error - unable to download attachments

    Hi all,

    I have a web page that contains a link that is connected to an attachement.Clicking on that link brings up a small window that allows me to save/open the attachment.It works fine without...
  7. Replies
    1
    Views
    866

    Re: DataGridView changes not saving!

    You have to write your own handlers for adding,deleting or updating the database based on what action is selected in the grid.That functionality does not come built-in.The grid only provides events...
  8. Replies
    6
    Views
    1,722

    Re: Web Service asmx problem

    There is a paramterless contructor.The problem is that the designer is not able to recognise my custom class like it does the built in classes(like System.Web.Services.WebService).Maybe I need to...
  9. Replies
    6
    Views
    1,722

    Re: Web Service asmx problem

    My custom class is deriving from System.web.Services.WebService.But still the designer doesnt work.Any ideas?

    Thanks in advance.

    CafeDreamz
  10. Replies
    4
    Views
    962

    Re: calling static methods

    hey,also make sure the Parserhelper method is not accessing any non-static instance members of the class to which it belongs.
  11. Replies
    4
    Views
    962

    Re: calling static methods

    you said your declaration is as follows:

    public String ParserHelper (String fileName, String num, String headers)

    you didnt specify the static keyword.

    it should be

    public static String...
  12. Replies
    6
    Views
    1,722

    Web Service asmx problem

    hi all,

    When I create a ASP.Net Web Service project in visual studio,it creates an asmx and asmx.cs(code-behind) by default apart from some other files.

    The class inside asmx.cs inherits from...
  13. Replies
    7
    Views
    1,018

    Re: Adding User Control

    what kind of a user control is it?is it a web user control(ascx) or a windows user control?
  14. Replies
    3
    Views
    2,692

    Re: datagrid sort event fires twice

    can you show me the Page Load event?there might be something happening there that's causing the sort to fire twice.
  15. Re: Change DataGrid value while associating DataSet

    write that logic inside the ItemDataBound event of the datagrid which is called before the data is bound to the grid.
    This event is called once for every record bound to the grid.So check for the...
  16. Replies
    2
    Views
    875

    Re: add data in datagrid

    It would be better for you to do all calculations in the SQL query itself before you attach the result to the datagrid.So if u want to do some calculations on one column and show it in another...
  17. Replies
    9
    Views
    28,151

    Re: Adding a record in SQL with an autonumber

    what is the primary key of your table?is it the ID column or is it ID+some other column?
  18. Replies
    9
    Views
    28,151

    Re: Adding a record in SQL with an autonumber

    Just double check to make sure you have specified the autonumber on the primary key column.
  19. Replies
    4
    Views
    1,118

    Re: Project templates in C#

    This is what I am looking for:

    I create a custom project template(custom web service project).When I create an instance of it, it should open up a web service project with say a service1.asmx and...
  20. Replies
    4
    Views
    1,118

    Project templates in C#

    Hi All,

    I am trying to create a project template in C#.It is similar to the template for creating an ASP.Net web service but the only difference is that my codebehind cs file derives from my...
Results 1 to 20 of 20





Click Here to Expand Forum to Full Width

Featured