|
Thanks for your reply..
I'll work on that.
|
|
|
|
|
Sure. Let me know if you need any more help !! Thanks !
Abhijit Jana | Codeproject MVP
Web Site : abhijitjana.net
Don't forget to click "Good Answer" on the post(s) that helped you.
|
|
|
|
|
Hi..
The problem was due to permission levels when accessing from a virtual directory.I have added "Identity" tag in web.config.The problem was solved.
Thanks for your suggestions.
|
|
|
|
|
I have a Front Page managed web site that we're moving from a 2003 server to a 2008 server/ASP.Net. Can one of the web admins continue to use Front Page to manage his portion of the web site? Thanks all.
“If you think you are worth what you know, you are very wrong. Your knowledge today does not have much value beyond a couple of years. Your value is what you can learn and how easily you can adapt to the changes this profession brings so often.”-– Jose M. Aguilar
|
|
|
|
|
hi as is often the case, i don't know the terminologies i am looking for so please bear with me.
(1) i have a web service and i would like to run instances of this web service into different machines (virtual/physical)
(2) and i would like each instance to talk to each other asynchronously.
(3) i would like to create a desktop application that communicates(2-way) with one of these web services.
all in c#/.net of course.
appreciate any pointers, all i need are directions and not urgentz codez plz ( a walkthrough article may be pushing it =))
many thanks.
----------------------------------------------------------
Lorem ipsum dolor sit amet.
modified on Thursday, November 19, 2009 7:03 AM
|
|
|
|
|
swjam wrote: and i would like each instance to talk to each other asynchronously.
Why do you want this, since both the instances are of the same web service?
Are you looking for some load balancing stuff by any chance?
SG
Aham Brahmasmi!
|
|
|
|
|
I have two asp list boxes, one is there in content page and
Another one is there in normal page. If I click ok button in normal page,
I want to display items in content page list box from normal page list box. Using java script
Please anyone help me. It is very urgent.
|
|
|
|
|
use
document.getElementById('<% =obj.ClientId%>') to get the object. Everything rendered in the client is html, so dont bother about what is happening in the server.
|
|
|
|
|
Hi, i'm wondering if someone can help me with this problem 'cause I can't find the solution.
Well my problem isn't of installation, I install the IIS, .NET Framework 1.1, 2.0, 3.0, 3.5, and 3.5 Service Pack 1 and Crystal Report 10.5. Ok then... After that I've installed the web application! ...Sucess! but when I'm printing a report, the page of IE6 show me error like
this[^]
But my app works perfect in Windows XP x86 SP2 and SP3! The server is Windows Server 2003 R2 SP2 x64! what could be the problem?? 
|
|
|
|
|
Firstly, IE6 is nearing the end of it's support (mid 2010) and has been replaced by IE7 and 8, so I suggest an update is warranted.
Secondly the screenshot is just about unreadable. The text of the error message would have been far more help.
Finally, from what I can make out it isn't an error in the popup at all. It is just that by default on 2003 Server the security is bolted down to block cookies. This looks like a simple privacy alert, not an error. Still, hard to tell with such a low res screen shot. There may be an error behind the icon at the bottom, but no-one can help without knowing what the error says.
If you have knowledge, let others light their candles at it.
Margaret Fuller (1810 - 1850)
www.JacksonSoft.co.uk
|
|
|
|
|
Hi,
We are in the process of upgrading a website. The focus of the website is advertising space and various other information related aspects. Currently the site is written in PHP, but most of the code does not work correctly and produces "page not found" errors.
We are wanting to upgrade the site so that the advertisers are correctly displayed and rotated, etc. and to offer a service whereby some advertisers will get more viewing. We were thinking the ASP would give us the best advantage in doing this.
However, for this application, would ASP.NET or ASP be better?
Thanks.
|
|
|
|
|
Erhm... ASP is the 'old' version while ASP.NET is (obviously) newer. We have several 'generations' of ASP.NET already.
I recommend writing your application using ASP.NET. You have the advantage of ASP.NET (controls) and you'll still be able to write good old ASP if you like.
Cheers!
|
|
|
|
|
Would definately have to be ASP.NET. You get to tap into proper programming namespaces and classes using VB, C# and other languages and use these in your web application - far far more powerful than classical ASP.
You can use some classical ASP coding in ASP.NET but not all coding. ASP.NET is not fully backwards compatible with classical ASP. For future proofing it would a far wiser to go with ASP.NET.
|
|
|
|
|
Why do you even spell this backdated item. ASP is just an old concept now, and it should be strongly rejected. ASP has never been popular and versatile enough in web.
ASP.NET is much more flexible and also it runs with OOPS.
Everyone here will suggest you ASP.NET.
But if it is already built in PHP, you can modify it easily in ASP, whereas ASP.NET require you a bit or work.
So choose according to the time given to you. Of course, if you opt to change in ASP.net it will be always better.
Cheers
|
|
|
|
|
I have a javascript function that I am using to disable an asp button control so that the button can not be clicked twice by the user. The problem I am having is that once I disable the button control it's postback event does not fire. Does anyone know how I can either cause the button click event to be fired, from javascript, after the button has been disabled or a different way to prevent the user from clicking the button twice, which causes two postbacks?
Thanks,
Steve Holdorf
|
|
|
|
|
I have had the same problem.... I solved it by setting the style's display property to 'none'. The button then disappears and cannot be clicked twice... However the page will still perform the postback. When the page is reloaded, your button will be visible again.
|
|
|
|
|
use
btn.Attributes.Add("onclick","javascript:this.style.display='none';");
so that it will hide itself after a single click.
Note : you need to modify the call to onclick with the appropriate code that you want to execute for the first time click.
|
|
|
|
|
I have a simple two column layout, with a left side menu bar div of fixed width, and a right side main content div. I need the main div to expand to fill any remaining space to the right of the menu div.
However, when I make the content div 100%, it assumes 100% width of it's parent, which includes the left menu div. It therefore extends beyond the visible space on the right side of the screen. If I remove the float attribute from the main, my left padding on the main div is ignored.
How can I get the main div sized to whatever dimension or percentage of space is not occupied by the menu div? I realise I could do some JS voodoo here, but surely there is a fairly simple CSS/HTML solution?
|
|
|
|
|
Try this style sheet with divs below it....
<style type="text/css">
body {
margin:0px;
padding:0px;
color:#000;
background:#fff;
height:100%;
}
#left {
position:absolute;
left:0px;
top:0px;
padding:0px;
width:200px;
height:100%;
background:#eaeaea;
border:1px solid #333;
}
.content {
position: relative;
margin-left:220px;
background:#ffc;
border:1px solid #333;
padding:10px;
}
</style>
<div id="left">
Menu in here. Fixed width.
</div>
<div class="content">
<h1>Main content here. 100% liquid width.</h1>
</div>
|
|
|
|
|
Hi,
I have created one web service.but it is not open in I.E browser(any)
plz give a hint ASAP.
thanks in advance.
|
|
|
|
|
You need to redefine your question because nobody understands your question this way...
|
|
|
|
|
Rephrasing the post would help others understanding your problem.
50-50-90 rule: Anytime I have a 50-50 chance of getting something right, there's a 90% probability I'll get it wrong...!!
|
|
|
|
|
is your web server running?
Have you browsed to the correct URL
If you have knowledge, let others light their candles at it.
Margaret Fuller (1810 - 1850)
www.JacksonSoft.co.uk
|
|
|
|
|
ASAP equals "urgentz"
|
|
|
|
|
Quick question does anyone here know how to use an EXISTING microsoft ajax control toolkit extender (i.e CollapsablePanelExtender) or an Ajax server control (i.e Accordian) in a customer server control?
Everything i Google is how to either write your own ajax server controls or ajax control extenders. I guess i could do that if i had to but i would really love to avoid reinventing the wheel here.
Any help is appreciated.
AJAX Toolkit = GOOD;
Custom Server Controls = GOOD;
Custom Server Controls + AJAX Toolkit = WTF????
It's monday and i'm frustrated.
Thanks for the help everyone.
Ryan Strope
Web Department
(Web Developer)
Cyber City Computers
Quidquid latine dictum sit, altum videtur
|
|
|
|