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
Rock Star
Posts
-
ASP .Net issue with Oracle client -
/r is removed from string parameterHi 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
-
Multiview ProblemHi, 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
-
How to retrieve response time to each request made in my ASPX page?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
-
Help in WidgetHi, I want to build my own widget and put it in my website. How can I do this? Thanking You! Rock Star
-
HTML table in Ajax tab controlHi, 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 Datatable ProblemI was thinking of using select method. Is there any example for selecting data from two different datatables?
Rock Star
-
ASP .Net Datatable ProblemBut I want only matching column of datatable A and datatable B in datatable C How can I do that?
Rock Star
-
ASP .Net Datatable ProblemHi, 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
-
Implementing web service issueThanx Its working now but what was the fault in previous code when I am trying to call methods directly.
Rock Star
-
Implementing web service issueHi, 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
-
Implementing web service issuepublic 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
-
Implementing web service issueHi, 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
-
Forum with ASP.net And C# codingHi, 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
-
Encrypt web.config fileThanx I got the solution I juast forgot to set the read permission on provider
Rock Star
-
Encrypt web.config fileHi 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
-
GridView SelectedIndex error:'Index out of range'Index for Datagrid starts from 0. Put your code here so you can get more help.
Rock Star
-
Redirection from global.aspxTry
Response.Redirect("Page Name");
I think it should work.
Rock Star
-
Mail on every exceptionI 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
-
Mail on every exceptionThanks 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