|
Its easy
you can use this using directive
using System.ServiceModel
|
|
|
|
|
sina rahimzadeh wrote: you can use this using directive
That has absolutely nothing to do with it.
The OP doesn't have a compile problem.
|
|
|
|
|
He can sacrifice a chicken as well. It's as relevant as your answer.
|
|
|
|
|
even turkey can't help me -/
modified 1-Jun-12 10:18am.
|
|
|
|
|
|
as I've said, I'd already used "netsh"
I'd added localhost, ip, + with my domain user or Everyone. But it still doesn't work)
|
|
|
|
|
first remove that port and then reserve it again, or change your port, maybe its allready reserved by another service!
|
|
|
|
|
How to add audio to a form. 
|
|
|
|
|
|
|
DON'T SHOUT. Using all capitals is considered shouting on the internet, and rude (using all lower case is considered childish). Use proper capitalisation if you want to be taken seriously.
Ideological Purity is no substitute for being able to stick your thumb down a pipe to stop the water
|
|
|
|
|
|
Hadn't noticed it was the same user...
Ideological Purity is no substitute for being able to stick your thumb down a pipe to stop the water
|
|
|
|
|
A NEW LEARN IS IN THE HOUSE, PLS A SERIOUS TUTOR. 
|
|
|
|
|
Please, be a serious student and DON'T YELL IN THE HOUSE!
You really haven't asked a qestion anyone can answer, so you're stuck until you do. Nobody is going to walk up to you and just start spewing all kinds of tidbits at you, so...
|
|
|
|
|
Dave Kreskowiak wrote: Nobody is going to walk up to you and just start spewing all kinds of tidbits
at you, so...
Well, there are several articles like that. 
|
|
|
|
|
DON'T SHOUT. Using all capitals is considered shouting on the internet, and rude (using all lower case is considered childish). Use proper capitalisation if you want to be taken seriously.
Ideological Purity is no substitute for being able to stick your thumb down a pipe to stop the water
|
|
|
|
|
Whoa, easy on the all caps, that's considered yelling
"The clue train passed his station without stopping." - John Simmons / outlaw programmer
"Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
"Not only do you continue to babble nonsense, you can't even correctly remember the nonsense you babbled just minutes ago." - Rob Graham
|
|
|
|
|
When i was working with Visual studio.net 2008 for asp.net applications, I was able to step into code that was generated by the .net framework. I believe that was called unmanaged code.
For the visual studio.net 2010 web form application I am working with, I would like to be able to step into the unmanaged code.
Thus can you tell me how to setup my environment so I can step into both the managed and unmanged code?
|
|
|
|
|
No, that's not unmanaged code.
Unmanaged code is code that is NOT generated by the designers and doesn't depend on the .NET Framework in order to run.
|
|
|
|
|
As Dave said, that is not unmanaged code, but in either case the procedure is the same as it was in VS2008. Why not just try it?
|
|
|
|
|
I tried that option and it did not work.
|
|
|
|
|
sc steinhayse wrote: I tried that option
What option?
sc steinhayse wrote: it did not work.
What did not work?
If you expect people to help you then you need to explain exactly what you are doing, what results you expect and what results you actually see. Saying "it did not work" gives us no information.
|
|
|
|
|
I am trying to pass a value from a pop up window back to the parent page. The query string is successful, but it wont go back to the previous page, but instead the pop-up window will redirect to the previous page with the values. What I want to do is close the pop-up window, and go back to the previous page with the values. Here are the code that I currently have:
//this is action performed when the button to submit the values are clicked
protected void btnSelect_Click(object sender, EventArgs e)
{
GridViewRow row = grdAll.Rows[SelectedProductIndex];
name = row.Cells[2].Text.ToString();
Industry = row.Cells[3].Text.ToString();
SubInd = row.Cells[4].Text.ToString() ;
geo = row.Cells[5].Text.ToString();
location = row.Cells[6].Text.ToString();
Page.Response.Redirect("frmMain.aspx?name=" + name + "&industry=" + Industry + "&subInd=" + SubInd + "&geo=" + geo + "&location=" + location);
}
//this is the page_load of the parent window
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
if (Page.Request.QueryString["name"] != null)
{
txtMPSname.Text = Page.Request.QueryString["name"].ToString();
txtLoc.Text = Page.Request.QueryString["location"].ToString();
DlstGeo.Text = Page.Request.QueryString["geo"].ToString();
DlstInd.Text = Page.Request.QueryString["industry"].ToString();
DlstSubInd.Text = Page.Request.QueryString["subInd"].ToString();
}
}
}
|
|
|
|
|
I THINK U SHOULD TRY THIS
U SHOULD CREATE A BUTTON INSIDE THE POP-UP PAGE NAMED "BACK", THEN GIVE IT THIS CODE:
Form1 frm2 = new Form1();
this.Hide();
frm2.Show();
frm2.Region = this.Region;
|
|
|
|