Click here to Skip to main content
15,898,893 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionSearch Engine in web site Pin
nikhil123415-Oct-08 0:50
nikhil123415-Oct-08 0:50 
AnswerRe: Search Engine in web site Pin
eyeseetee15-Oct-08 0:53
eyeseetee15-Oct-08 0:53 
GeneralRe: Search Engine in web site Pin
nikhil123415-Oct-08 1:22
nikhil123415-Oct-08 1:22 
QuestionUpdate panel refresh in Firefox Vs IE7 Pin
Nicejith15-Oct-08 0:35
Nicejith15-Oct-08 0:35 
Questionhelp to access different cs(class) files using the concept of inheritence Pin
sarala.s15-Oct-08 0:32
sarala.s15-Oct-08 0:32 
AnswerRe: help to access different cs(class) files using the concept of inheritence Pin
Nicejith15-Oct-08 0:43
Nicejith15-Oct-08 0:43 
GeneralRe: help to access different cs(class) files using the concept of inheritence Pin
sarala.s15-Oct-08 1:11
sarala.s15-Oct-08 1:11 
GeneralRe: help to access different cs(class) files using the concept of inheritence Pin
Nicejith15-Oct-08 1:31
Nicejith15-Oct-08 1:31 
I'm not sure whether you are looking for this, but i'm giving you an example

first.cs
--------
using System;
using System.Data;
using System.Configuration;
using System.Linq;
.
.
.
namespace Test
{
public class Images
{

public memberFunction();
{
//do something
}
}
}
----------

second.cs
---------
using System;
using System.Data;
using System.Configuration;
using System.Linq;
using Test; // including the namespace
.
public class DB
{
private method1()
{
Images images=new Images();
images.memberFunction();
}
}



Does it make sense?
AnswerRe: help to access different cs(class) files using the concept of inheritence Pin
Paddy Boyd15-Oct-08 1:52
Paddy Boyd15-Oct-08 1:52 
QuestionAdd Ancre to Url!! Pin
papy-boom15-Oct-08 0:07
papy-boom15-Oct-08 0:07 
QuestionHow to populate this kind of data list?? Pin
VinothRao15-Oct-08 0:00
VinothRao15-Oct-08 0:00 
AnswerRe: How to populate this kind of data list?? Pin
Paddy Boyd15-Oct-08 1:20
Paddy Boyd15-Oct-08 1:20 
GeneralRe: How to populate this kind of data list?? Pin
VinothRao15-Oct-08 3:07
VinothRao15-Oct-08 3:07 
GeneralRe: How to populate this kind of data list?? Pin
Paddy Boyd15-Oct-08 3:13
Paddy Boyd15-Oct-08 3:13 
QuestionHow to handle encryption decription of connection string ? Pin
gatewaytl14-Oct-08 23:27
gatewaytl14-Oct-08 23:27 
AnswerRe: How to handle encryption decription of connection string ? Pin
HemJoshi15-Oct-08 0:15
HemJoshi15-Oct-08 0:15 
QuestionProblems with DataReader Pin
HellRzr14-Oct-08 23:21
HellRzr14-Oct-08 23:21 
AnswerRe: Problems with DataReader Pin
HemJoshi15-Oct-08 0:18
HemJoshi15-Oct-08 0:18 
QuestionRe: Problems with DataReader Pin
HellRzr15-Oct-08 0:28
HellRzr15-Oct-08 0:28 
AnswerRe: Problems with DataReader Pin
Paddy Boyd15-Oct-08 1:54
Paddy Boyd15-Oct-08 1:54 
QuestionHow do I select a folder instead of a file Pin
ankit vora14-Oct-08 22:57
ankit vora14-Oct-08 22:57 
GeneralRe: How do I select a folder instead of a file Pin
aprasannakumar14-Oct-08 23:12
aprasannakumar14-Oct-08 23:12 
AnswerRe: How do I select a folder instead of a file Pin
Paddy Boyd15-Oct-08 1:51
Paddy Boyd15-Oct-08 1:51 
QuestionHeader Problem in Gridview Pin
Sneha Bisht14-Oct-08 22:07
Sneha Bisht14-Oct-08 22:07 
AnswerRe: Header Problem in Gridview Pin
nikhil123414-Oct-08 22:13
nikhil123414-Oct-08 22:13 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.