User Profile

Collapse

Profile Sidebar

Collapse
nitinp
nitinp
Last Activity: Nov 6 '08, 12:06 PM
Joined: Aug 8 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • nitinp
    replied to WSE X.509 Certificate Tool
    in .NET
    It is Microsoft .NET supported tool for webservice security. I am finding difficulty to search relevant help articles for my issue.
    See more | Go to post

    Leave a comment:


  • nitinp
    started a topic WSE X.509 Certificate Tool
    in .NET

    WSE X.509 Certificate Tool

    hi,
    I have installed WSE 3.0 on my machine. When I open 'WSE X.509 Certificate Tool' from start menu then it does not show 'Other People' store for 'Current User' and for 'Local Machine'. Though it is shown in MMC. How can I add this in Store combo?

    Any help is appreciated.
    See more | Go to post

  • How to implement WSE 3.0 in web service with code only

    Hi,

    I want to implement WSE 3.0 with my web service and client application without using policy files in WSE tool but writing code for policy files in web service and in client application. I want some links for articles with details of code.

    Pls help, it is taking too long for me.

    Thanks
    Nitin
    See more | Go to post
    Last edited by nitinp; Oct 24 '07, 07:24 AM. Reason: better title to understand context

  • nitinp
    started a topic Calling web page from Global.asax
    in .NET

    Calling web page from Global.asax

    Hi,
    I have a Global.asax file in which a function calls a my_method at given time interval. In this method I want to open a web page, how can I do this?

    My code is like this:

    void Aplication_Star t(object sender,EventArg s e)
    {
    ....
    my_method();
    }

    public static void my_method()
    {
    //Here I want to write code for calling web page.
    }

    ...
    See more | Go to post

  • Determine width and height of popup window at run time

    Hi,

    I am opening a popup window "PW.aspx" on click of a button on page "MyPage.asp x". I want to determine width and height of "PW.aspx" on "PW.aspx". I want it for IE

    window.screen.a vailHeight - gives me the hight of screen not of popup

    Pls tell me if any idea.

    thanks
    Nitin
    See more | Go to post

  • nitinp
    started a topic How to put validation with Javascript in Firefox.
    in .NET

    How to put validation with Javascript in Firefox.

    hello,
    I am trying to validate empty textbox value by javascript in Firefox. It is working fine in IE but not in Firefox.

    Note - code is for ASP.NET

    <script runat="server">
    protected void Page_Load(objec t sender, EventArgs e)
    {
    if (!IsPostBack)
    Button1.Attribu tes.Add("onclic k", "javascript:che ckForm();");
    }
    </script>...
    See more | Go to post

  • nitinp
    started a topic how to edit child gridview record
    in .NET

    how to edit child gridview record

    I am facing the problem in editing records in child gridview which i have placed in the parent gridview's cell. I have bound both parent and child with different sqlDataSource objects.

    I have written following code to papulate child gridview and given Edit/Update column in it.

    protected void gvMaster_RowDat aBound(object sender, GridViewRowEven tArgs e)
    {
    int intMAsterID1;
    if (e.Row.RowType == DataControlRowT ype.DataRow)...
    See more | Go to post

  • How to pass parameters to stored procedure, which is used by sqlDataSource

    I want to bind GridView with sqlDataSource like following
    Code:
    sqlDataSource1.SelectCommand = "GET_TRACKING_INFO";
    sqlDataSource1.SelectCommandType = SqlDataSourceCommandType.StoredProcedure;
    				
    sqlDataSource1.SelectParameters.Add("Group_code",TypeCode.String, "1");
    sqlDataSource1.SelectParameters[0].Direction =ParameterDirection.Input; 
    
    GridView1.DataSource = sqlDataSource1;
    ...
    See more | Go to post
    Last edited by Frinavale; Mar 9 '09, 03:06 PM. Reason: Added [code] tags: Please post code in [code] [/code] tags. (Moved to ASP.NET from .NET)
No activity results to display
Show More
Working...