Click here to Skip to main content
15,868,292 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: IP Address Pin
Christian Graus16-Sep-09 17:27
protectorChristian Graus16-Sep-09 17:27 
AnswerRe: How can I get the local machine's IP address in a Test.aspx form Pin
sashidhar16-Sep-09 18:31
sashidhar16-Sep-09 18:31 
AnswerRe: How can I get the local machine's IP address in a Test.aspx form Pin
rakesh_choudhury16-Sep-09 21:16
rakesh_choudhury16-Sep-09 21:16 
QuestionHow to do this configuration programatically Pin
vishwjeet16-Sep-09 10:42
vishwjeet16-Sep-09 10:42 
AnswerRe: How to do this configuration programatically Pin
Christian Graus16-Sep-09 11:11
protectorChristian Graus16-Sep-09 11:11 
AnswerRe: How to do this configuration programatically Pin
Not Active16-Sep-09 11:14
mentorNot Active16-Sep-09 11:14 
AnswerRe: How to do this configuration programatically Pin
sashidhar16-Sep-09 18:33
sashidhar16-Sep-09 18:33 
GeneralRe: How to do this configuration programatically Pin
vishwjeet16-Sep-09 19:16
vishwjeet16-Sep-09 19:16 
Hi, I have aready seen this .. but didn't post it here.. thanks for doing it
I got my answer on this link only.
I am putting my code for others reference

static void Main(string[] args)
{
//TcpChannel channel = new TcpChannel(8080);

IDictionary props = (IDictionary) new Hashtable();

props.Add("port", "8080");
props.Add("secure", "true");
//props.Add("impersonate", "true");
//props.Add("authorizationModule", "AuthorizeUser");

BinaryClientFormatterSinkProvider cp = new BinaryClientFormatterSinkProvider();
BinaryServerFormatterSinkProvider sp = new BinaryServerFormatterSinkProvider();
IChannel chan = new TcpChannel(props,cp,sp);
ChannelServices.RegisterChannel(chan,true);

RemotingConfiguration.RegisterWellKnownServiceType(typeof(ns_registeruser.cls_registeruser), "ApplicationMain", WellKnownObjectMode.Singleton);

Console.WriteLine("Server Started .. ");
Console.ReadLine();
AnswerRe: How to do this configuration programatically Pin
vishwjeet17-Sep-09 0:10
vishwjeet17-Sep-09 0:10 
QuestionUpdateModel vs Request.Form.. Pin
Quake2Player16-Sep-09 10:02
Quake2Player16-Sep-09 10:02 
QuestionUnable to Add Service Reference to Consumer Project in ASP.Net Pin
AndyASPVB16-Sep-09 9:46
AndyASPVB16-Sep-09 9:46 
GeneralRe: Unable to Add Service Reference to Consumer Project in ASP.Net Pin
carlosbourque16-Sep-09 11:26
carlosbourque16-Sep-09 11:26 
GeneralRe: Unable to Add Service Reference to Consumer Project in ASP.Net Pin
AndyASPVB16-Sep-09 12:15
AndyASPVB16-Sep-09 12:15 
GeneralRe: Unable to Add Service Reference to Consumer Project in ASP.Net Pin
carlosbourque17-Sep-09 9:50
carlosbourque17-Sep-09 9:50 
Questiondeploying server without visual studio and sql server -- only framework 3.5 Pin
vishwjeet16-Sep-09 8:38
vishwjeet16-Sep-09 8:38 
AnswerRe: deploying server without visual studio and sql server -- only framework 3.5 Pin
Manas Bhardwaj16-Sep-09 8:48
professionalManas Bhardwaj16-Sep-09 8:48 
GeneralRe: deploying server without visual studio and sql server -- only framework 3.5 Pin
vishwjeet16-Sep-09 8:51
vishwjeet16-Sep-09 8:51 
GeneralRe: deploying server without visual studio and sql server -- only framework 3.5 Pin
vishwjeet16-Sep-09 9:13
vishwjeet16-Sep-09 9:13 
GeneralRe: deploying server without visual studio and sql server -- only framework 3.5 Pin
Abhishek Sur16-Sep-09 9:43
professionalAbhishek Sur16-Sep-09 9:43 
QuestionLosing Session Variables within Frames Pin
mjc22516-Sep-09 8:33
mjc22516-Sep-09 8:33 
AnswerRe: Losing Session Variables within Frames Pin
Steve van Niman16-Sep-09 12:21
Steve van Niman16-Sep-09 12:21 
GeneralRe: Losing Session Variables within Frames Pin
mjc22516-Sep-09 14:19
mjc22516-Sep-09 14:19 
GeneralRe: Losing Session Variables within Frames Pin
butchzn1-Oct-09 20:48
butchzn1-Oct-09 20:48 
QuestionFooterTemplate in Gridview. Pin
dayakar_dn16-Sep-09 8:16
dayakar_dn16-Sep-09 8:16 
AnswerRe: FooterTemplate in Gridview. Pin
Muhammad Mazhar17-Sep-09 9:22
Muhammad Mazhar17-Sep-09 9:22 

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.