microsoft.public.dotnet.framework.aspnet Archive - March 2004
Post a message to this list
Messages
Page: 1234567891011121314151617181920
2122232425262728293031323334353637383940
41424344454647484950515253545556
Unable to start debugging on the Web Server. (3 replies)
microsoft.public.dotnet.framework.aspnet
Hi, I'm getting this message ever since I applied W2KSP4 on my server (which is both my local machine development environment and my web server). I've been through the "Things to Check" help on this error and am about 80% sure I'm OK with all the points mentioned. Per KB 821255 I have also added my "domainname\ASPNET" account to the assignments for Impersonate a client after authentication. It see...
Netscape and windows controls (2 replies)
microsoft.public.dotnet.framework.aspnet
Hi. The article found at (http://msdn.microsoft.com/msdnmag/issues/02/01/UserCtrl/default.aspx) teaches that hosting windows controls in a web page is a responsibility of IE. Can any version of Netscape or other browsers, hosts this kind of control? Regards, Chris Leffer *** Sent via Developersdex http://www.developersdex.com *** Don't just participate in USENET...get rewarded for it!
Strange problem with validation (3 replies)
microsoft.public.dotnet.framework.aspnet
Hello! My problem is that i have validation controls on my webform but they are not "fired" because there is no "onclick" event being made on the button that should "fire" off the validation controls. I have tried to add the onclick event by myself by adding: LoginBtn.Attributes.Add("onclick", "if (typeof(Page ClientValidate) 'function') Page ClientValidate(); ") But that is not good enough becaus...
Web form and Arabic characters... (6 replies, VIP)
microsoft.public.dotnet.framework.aspnet
I'm having trouble displaying and passing arabic characters from my web form. I've added requestEncoding "windows 1256" responseEncoding "windows 1256" to my web.config but it didn't help. I also added meta http equiv "Content Type" content "text/html; charset windows 1256" to the top of the page and that still didn't fix it. When I submit a form with arabic text it comes out as %e1%c8 instead of ...
Pros and Cons about automatic increase in MS SQL 2000 (2 replies)
microsoft.public.dotnet.framework.aspnet
Hello experts, Currently I am writing a database web application using viusal studio .net with C#. Just wondering when come to the database design, what are the pros and cons about setting the primary key field to automatic increase? Thanks, Benny *** Sent via Developersdex http://www.developersdex.com *** Don't just participate in USENET...get rewarded for it!
Page Security (3 replies)
microsoft.public.dotnet.framework.aspnet
Hello, I'm trying to create an ASP.NET page that ONLY allows access if its linked to from another specific server. I know the IP address of this server. I was wondering how I'd go about setting this up in a secure way? I considered using HTTP REFERER but I found that its easy to spoof this and its not very reliable. What other options do I have? I'd like to avoid passing something in the querystri...
Navigate to specific location on page (2 replies)
microsoft.public.dotnet.framework.aspnet
Hi, I am trying to link to a specific location on a page using a named anchor. I also have some parameters attached to the query string. I am having problems getting the page to display the correct portion of the page when it loads. I have a few named anchors on the page using the following format a name "branding" /a Then some text here. In the URL I have http://mysite.com.au/default.aspx?id 1#br...
RewritePath issues (3 replies)
microsoft.public.dotnet.framework.aspnet
Hello all, I'd like to have personalized URL's in my application. For example, http://mydomain.com/sites/page.aspx should be accessible via http://mydomain.com/sites/username/page.aspx. I'd like to parse the URL and grab the username so I can deliver the appropriate content on the page. This seems to be accomplished by the HttpContext.RewritePath method. I've read that ASP.NET uses it to strip out...
Caching a Large DataSet (2 replies)
microsoft.public.dotnet.framework.aspnet
I maintain a list of companies in my application. The first time the company table is accessed, I create a dataset and stick it in the Cache. When the company table is modified, I expire the cached item, recreate the DataSet, and stick it in the Cache again. I get excellent performance when running this on my local machine. I can tell when an aspx is accessing a cached copy of the company list sin...
Referencing an object in another browser instance. Possible? (2 replies)
microsoft.public.dotnet.framework.aspnet
Hello Group I'm having a bit of trouble figuring this out. I'm grateful for any hints. Let's assume I'm have a webapplication with two .aspx pages, Page A and Page B. Page A consists of a textbox (textbox1) and a HTML Button control. Page B consists of a datagrid control. When the button on Page A is clicked, Page B is opened in a new browser window displaying a list of values. (Page A stays open ...
Error : Unable to start debugging (5 replies, VIP)
microsoft.public.dotnet.framework.aspnet
Hi, When I try to run an asp.net project or windows application project in debug note, I get the following error message "Error while trying to run project: Unable to start debugging. The debugger is not properly installed, Run setup to install or repair the debugger" I tried both the approach, Uninstalling and installing the VS.Net again as well as the repair option. Still I am recieving the same...
get information from the request (2 replies)
microsoft.public.dotnet.framework.aspnet
Hi everyone, When I do some postback I need to discover some information like what aspx form or even the relative url to the project that the postback is orginated from. For exemple if I have projectRoot/folder1/folder2/page.aspx when i do the postback from that page, i want to get something like "projectRoot/folder1/folder2/page.aspx" or at least "page.aspx", I believe I may get that from the Req...
postback and refresh problem (3 replies)
microsoft.public.dotnet.framework.aspnet
I have a ASPX form with a dropdownlist that makes a post back (to the same page of course, just a normal asp.net postback) That page also has an auto refresh javascript as it needs to refresh its data automatically. The problem is that when i click on the dropdownlist, i post back information to the page, then after that the next refresh will brin me a alert message populated by internet explorer ...
get information from the Request (2 replies)
microsoft.public.dotnet.framework.aspnet
Hi everyone, When I do some postback I need to discover some information like what aspx form or even the relative url to the project that the postback is orginated from. For exemple if I have projectRoot/folder1/folder2/page.aspx when i do the postback from that page, i want to get something like "projectRoot/folder1/folder2/page.aspx" or at least "page.aspx", I believe I may get that from the Req...
Client side validation in asp.net forms (5 replies)
microsoft.public.dotnet.framework.aspnet
Hi Has anyone any experience using client side validation with asp.net forms. Specifically I'd like to know... 1. How do you attach client side code web controls (a button), like a JavaScript 'onclick' event for example? 2. Any issues anyone has experienced using client side validation with asp.net forms? Thanks in advance Simon Ames
ASP, multipart/form-data encoding (4 replies)
microsoft.public.dotnet.framework.aspnet
I'm sorry if this is the wrong newsgroup, but the ASP ones seem to be devoid of any talk about ASP (and rather filled with spam). I have a very simple form here that loops back into upon submission: All I'm trying to do is test that the hidden field is passing properly (it's not). It works fine when I remove the encoding property from the FORM tag, but I need it to build a file upload component. I...
ASP.NET / SQL / Japanische Zeichen (2 replies)
microsoft.public.dotnet.framework.aspnet
Hallo Zusammen Ich hab eine simples ASP.NET Formular, in welche ich einen Text eingeben kann. Beim klicken von speichern wird dieser in die Datenbank gespeichert und danach kann dieser über eine andere Seite angezeigt werden. Ich möchte jetzt auch Japanische Zeichen speichern können. Ich kann diese eingeben und speichern. Die Ausgabe besteht dann aber leider nur aus ????? . Wenn ich die DB im Ente...
how do to do this in asp.net? (3 replies)
microsoft.public.dotnet.framework.aspnet
Hello ive tried to do the following in asp.net using C# but ive looked at articles and they have according to me so many lines of code it makes no sense. could you guys help me with following? i need it as ole db % set conn server.createobject("adodb.connection") conn.open "Provider SQLOLEDB.1;Persist Security Info False;UID myuser;pwd mypass;Initial Catalog lab;server 192.168.8.5" sql "EXEC MyPro...
Preserve value in HTML File Control (4 replies)
microsoft.public.dotnet.framework.aspnet
Hello I have three control on page. One is HTML File Control and other two is Web Control Button. Now when i click on first button the page is posted and i want the file path that was previously selected get displayed in the HTML File Control. After this i click on second button and file is processed at the server. Can anyone tell me how to preserve and set the value in the HTML File Control in th...
Open popup aspx page (4 replies)
microsoft.public.dotnet.framework.aspnet
Hi, I have a usercontrol with a button. In the button's click event I have to open an instance of an aspx page, passing some values to some public variables of the page. How can I call the instance of the right page? The code is the follow: //this is the webpage LookUpWebForm LUWF new LookUpWebForm //these are the variables valued LUWF.TabellaDB m DBTable; LUWF.IDLookUp ID; LUWF.PageSize PageSize;...
Please help DEPERATE page randomly stops loading (3 replies)
microsoft.public.dotnet.framework.aspnet
Hi I am getting pretty frustrated here. I have a simple page architecture that consists of a header web user control, the main page content and a footer web user control Every so often that page loads the header content and just stops. If I click view source, I see that all the content has been pushed to the client. It just doesn't render!! This happens at random points often when doing postbacks....
Windows media player and asp.net (2 replies)
microsoft.public.dotnet.framework.aspnet
Does anyone have any code as to how to display a dynamically generated media player control in asp.net?
Looking for Good book for JScript.net (2 replies)
microsoft.public.dotnet.framework.aspnet
I need recommendations for a good source for jScript.net. I have no javascript background and would like to start with jscript. Does anyone have essam ahmed's book that they would like to sell? Thanks
IADs, adsObject and other stories (2 replies, VIP)
microsoft.public.dotnet.framework.aspnet
Hi all. (please excuse the cross post, I'm none too sure where to pitch this question) I'm trying to write some ASP.NET to create a web site on a server form a given set of variables, and found seom code on teh internet that does roughly what i need. (http://www.panayot.com/articles/iis.htm) but is a little too long winded. Between that and a C# example (http://weblogs.asp.net/jezell/archive/2003/...
help on ASP (2 replies)
microsoft.public.dotnet.framework.aspnet
Hi guys, First, my apologies, but I can't find a MS newsgroup for ASP and not ASP.NET like this one But here is my question Set cnData server.createObject("ADODB.Command") Set rsData server.createObject("ADODB.RecordSet") ' set the page size rsData.PageSize iPSize rsData.CursorLocation adUseClient ' open the data sSQL " SELECT * FROM vATSlistaAssistencias " & " WHERE estado 'ACTIVO' and estadoEsc ...
Ad
Need Dot Net Interview Questions?
Ask ExamGuru, Inc. for advice and help on Passing .Net Interviews
.Net Projects
Best-of-breed application framework for .NET projects, developed by ExamGuru, Inc. and ExamGuru IT
Free .net Help
Commission ExamGuru, Inc. and his team for your next bespoke software project
FogBUGZ
The only bug tracking system carefully crafted with one goal in mind: helping teams create great software.
Awesome Tools
If you don't know about these, you're missing out... IT Certification Questions
IT Interview Questions
Free Oracle 10g Training
MCSE Boortcamp
Cisco Study Guides
Cheap Study Guides
Exact Questions
Dot Net Interview Questions
Oracle OCP
Cheap Travel
Designer Perfumes - Wholesale Prices
Free Programming Tutorials
 
ExamGuru IT Solutions - .Net Guru is owned and operated by ExamGuru, Inc., the man behind .Net Guru. If you're in the market for bespoke software or software consultancy, why not get him and his highly trained team to help? - www.examguru.net/ITCertification
 Copyright © ExamGuru, Inc. 2001-2006
Contact Us - Terms of Use - Privacy Policy - www.dot-net-guru.com - www.examguru.net - www.oraclesource.net - www.itinterviews.net - www.examguru.net/ITCertification