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
R

Rock Star

@Rock Star
About
Posts
94
Topics
42
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • ASP .Net issue with Oracle client
    R Rock Star

    Hi All, After developing the application with oracle client 9.2 on my machine, when I am trying to run the application on server with having Oracle client 10.1, I am not able to run it. Is it possible to run an application build with 9.2, on server having oracle client 10.1 on it. Thanks Rock Star

    C# csharp oracle sysadmin help

  • /r is removed from string parameter
    R Rock Star

    Hi all, I am passing a string parameter to one of the method of web service. This string parameter has /r and/n incorporated in it, but when value is passed to web service it removes /r from it. Any reason why is it happening so. Web service is created using .Net framework 1.1 and written in C# code. I am trying to consume web service in an another application build using framework 1.1. Rock Star

    C# csharp dotnet

  • Multiview Problem
    R Rock Star

    Hi, I am using a multiview in one of my webpage but when I am switching from one view to another in multiview I can't access any control value of previous view to current view. Why am I geeting this problem? Thanks & Regards Rock Star

    ASP.NET help question

  • How to retrieve response time to each request made in my ASPX page?
    R Rock Star

    Hi, How can I retrieve the list of all the request I made it to server with respect to time required to process time for it. For ex: In my page I am using some web services. I want to retrieve list of all the web services I am using and time required to process this request. How can I do this. Thanks & Regards Rock Star

    ASP.NET question wcf sysadmin tutorial

  • Help in Widget
    R Rock Star

    Hi, I want to build my own widget and put it in my website. How can I do this? Thanking You! Rock Star

    ASP.NET question help

  • HTML table in Ajax tab control
    R Rock Star

    Hi,    I want to keep an HTML table with pagiing inside a ajax tab control for that I have written following code This is ASPX code <ajax:TabContainer ID="tabHomeownTips" runat="server"             ActiveTabIndex="0" Width="565px" Height="600px" Font-Underline="False"             Enabled="true" EnableTheming="True" ScrollBars="Auto" EnableViewState="False" >             <ajax:TabPanel ID="TabTip1" HeaderText="Tip1" runat="server" OnClientClick="function(){LoadTableTab('results','pageNavPosition');}">                   <ContentTemplate>                         <table id="results" >                               <tr>                                     <th>Sr. No.</th>                                     <th>Description</th>                               </tr>                               <tr>                                     <td>1</td>                                     <td>Description of Tab1 Item 1</td>                               </tr>                               <tr>                                     <td>2</td>

    ASP.NET html sysadmin

  • ASP .Net Datatable Problem
    R Rock Star

    I was thinking of using select method. Is there any example for selecting data from two different datatables?

    Rock Star

    ASP.NET question csharp help

  • ASP .Net Datatable Problem
    R Rock Star

    But I want only matching column of datatable A and datatable B in datatable C How can I do that?

    Rock Star

    ASP.NET question csharp help

  • ASP .Net Datatable Problem
    R Rock Star

    Hi,    How can I filter two different datatables in a single datatable? like consider I have following two datatables DataTable A                           DataTable B PID   |   CID                     CID      |   FID 1      |   1                           1         |      1 2      |   2                           4         |      8 4      |   16                        16         |   32 So after filtering I can have a output like DataTable C PID   |   FID 1      |   1 4      |   32 So in my filtered dattable I can have only matching results of datatable A and Datatable C? How can I do this using .Net datatable?

    Rock Star

    ASP.NET question csharp help

  • Implementing web service issue
    R Rock Star

    Thanx Its working now but what was the fault in previous code when I am trying to call methods directly.

    Rock Star

    Web Development csharp wcf help question

  • Implementing web service issue
    R Rock Star

    Hi, I am trying to call this web service in window application I am assigning generated dataset in web service to one of my dataset in windows application. The code is as follows

    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Windows.Forms;
    using System.Web.Services;
    using System.Configuration.Assemblies;
    using System.Xml;

    namespace UserWindow
    {
    public partial class UserWindow : Form
    {
    public UserWindow()
    {
    InitializeComponent();
    }

        private void LoadData\_Click(object sender, EventArgs e)
        {
            DataSet ds = new DataSet();
            ds = UserWebService1.Service1.(Here I am getting Reference, GenerateXMLMappings and EqualReference methods)
        }
    }
    

    }

    Rock Star

    Web Development csharp wcf help question

  • Implementing web service issue
    R Rock Star

    public class Service1 : System.Web.Services.WebService
    {
    public DataSet UserDataset = new DataSet();
    public SqlDataAdapter UserAdapter = new SqlDataAdapter("Select Query",new SqlConnection("connection string"));

        \[WebMethod\]
        public string HelloWorld()
        {
            return "Hello World";
        }
    
        \[WebMethod\]
        public DataSet GetUserData()
        {
            UserAdapter.Fill(UserDataset);
            return UserDataset;
        }
    
        \[WebMethod\]
        public DataSet UpdateUserData(DataSet ds)
        {
            if(ds != null)
            {
                UserAdapter.Update(ds);
                return ds;
            }
            else
            {
                return null;
            }
        }
    
        private void InitializeComponent()
        {
            this.UserDataset = new System.Data.DataSet();
            ((System.ComponentModel.ISupportInitialize)(this.UserDataset)).BeginInit();
            // 
            // UserDataset
            // 
            this.UserDataset.DataSetName = "NewDataSet";
            ((System.ComponentModel.ISupportInitialize)(this.UserDataset)).EndInit();
    
        }
    }
    

    This is the source code but when I am trying to access any of this method by making an object of Service1 class I am getting only two function in intellisense that are Equals() and ReferenceEquals(). any idea why am I getting this issue?

    Rock Star

    Web Development csharp wcf help question

  • Implementing web service issue
    R Rock Star

    Hi, I build a web service in .Net. After adding this web service as a web reference in my website and when I am trying to use the methods in a web services by creating the object of it, I am getting only two methods which are equals and reference equals anyone knows why I am facing this issue?

    Rock Star

    Web Development csharp wcf help question

  • Forum with ASP.net And C# coding
    R Rock Star

    Hi, You will get some example of forums with source code, use google for it.To make it in Farsi language you have to use a concept of Localization. There are lot of tutorials are available for it.

    Rock Star

    ASP.NET csharp asp-net tutorial question

  • Encrypt web.config file
    R Rock Star

    Thanx I got the solution I juast forgot to set the read permission on provider

    Rock Star

    ASP.NET csharp asp-net docker help

  • Encrypt web.config file
    R Rock Star

    Hi I am not able encypt web.confige file. I am able to Create a custom RSA key container by running command C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis.exe -pc “MyKeys” -exp after Specify a protected data provider in web.config file and running on following command to encypt the web.config file it gives the list of all command related to ASP .NET registration options and my web.config file is not encrypted C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis.exe -pef "SensitiveAccountInfo" "path" -prov “MyProvider” Please Help me in it. Thanking You!.

    Rock Star

    ASP.NET csharp asp-net docker help

  • GridView SelectedIndex error:'Index out of range'
    R Rock Star

    Index for Datagrid starts from 0. Put your code here so you can get more help.

    Rock Star

    ASP.NET help database

  • Redirection from global.aspx
    R Rock Star

    Try

    Response.Redirect("Page Name");

    I think it should work.

    Rock Star

    ASP.NET tutorial

  • Mail on every exception
    R Rock Star

    I just want to extend the functionality. Like these days we usually have more than one application in a single project solution. If I got error on any application within same solution how can we capture this bug, instead of writing same code in each application's global.asax file. Thanking You!

    Rock Star

    ASP.NET

  • Mail on every exception
    R Rock Star

    Thanks but I am looking for sending mail on any kind of exception not only database connectivity exception. Thanks to adkalavadia I got what I wanted.

    Rock Star

    ASP.NET
  • Login

  • Don't have an account? Register

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