consider using ASP.NET MVC or just use HttpHandlers see this article http://msdn.microsoft.com/en-us/library/ms972953.aspx[^]
Web Developer
modified on Tuesday, February 24, 2009 3:11 AM
consider using ASP.NET MVC or just use HttpHandlers see this article http://msdn.microsoft.com/en-us/library/ms972953.aspx[^]
Web Developer
modified on Tuesday, February 24, 2009 3:11 AM
check out the url in the displayed web page, does it look like http://localhost:xxxx/XXXXX ? ok, try to replace the localhost with 127.0.0.1, to make the url look like http://127.0.0.1:xxxx/XXXXX and try it, does this work ? if yes, then the error is from the hosts file, which maps the localhost to 127.0.0.1 which is your local machine's IP address, to correct that just go to C:\windows\system32\drivers\etc\hosts open it with notepad, and map localhost to 127.0.0.1 with adding this line: 127.0.0.1 localhost please tell me if this doesn't fix the problem.
Web Developer
Guys, can anyone help me with this error The "Microsoft.Build.Tasks.Windows.GetWinFXPath" task could not be loaded from the assembly PresentationBuildTasks, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35. Could not load file or assembly 'PresentationBuildTasks, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified. Confirm that the declaration is correct, and that the assembly and all its dependencies are available. WebApplication1 it comes whenever i create a project that uses .NET framework 3.5 please help me i'm using Windows Visa Ultimate
Web Developer
Thank you anyway
Web Developer
i think there's a solution, check this out: http://aspadvice.com/blogs/rbirkby/archive/2006/11/01/Client_2D00_side-validation-in-Firefox.aspx[^] but this is with ASP.NET 2.0 and but i'm using ASP.NET 1.1 which is a requirement...
Web Developer
Hello guys, I'm working with ASP.NET 1.1 and the validations are not working on the client-side with firefox, it's working fine on the client-side with IE and on server-side for both, can anyone help me with this?
Web Developer
thanks you very much, will try that
Web Developer @ Silverkey Egypt
can anyone help me in this, i have a multi form app. , i have many open forms, all of the same type(say MyForm) i want to get the text of a textbox inside each open forms) as well as many info, including the position of the form can anyone tell me how to do it thnx in advance
Web Developer @ Silverkey Egypt
?dear all, requiredfieldvalidator doesn't work properly within updatepanel, when i use it outside of the updatepanel it works, but within the updatepanel and with the validatorcalloutextender it doen't work properly, can u help me please
Web Developer @ Silverkey Egypt
please note that this tag will not be included while you type the code i've shown: **and ]]> please remove it, thnx
Web Developer @ Silverkey Egypt
**
hello, please follow these steps: 1)create a web user control named Education and contains your 3 controls and customize it as u like,it should be like this: **]]>
School
Major
Degree
**2)in your webform add this directive in the top of the page code right after the <%@ page %> directive: ]]> 3)add this code in your webform code: <% try { int ItemsCount = 0; ItemsCount = Convert.ToInt32(Session["ItemsCount"].ToString()); for (int i = 0; i < ItemsCount; i++) { int Counter = i + 1; Education1.ID = "Education" + Counter.ToString(); %> <% } } catch (Exception ex) { } %>
4)add a button and type this in the click event; if (Session["ItemsCount"] != null) { int SessionValue = Convert.ToInt32(Session["ItemsCount"].ToString()); SessionValue++; Session["ItemsCount"] = SessionValue.ToString(); } else { Session["ItemsCount"] = "1"; }
that's it, and you may put all of that in an updatepanel to have the AJAX effect.... i wish that could help you, please let me know if there're any errors...
Web Developer @ Silverkey Egypt
hello there, you should write it like this string q = "SELECT collapsed_building.b_name,collapsed_building.b_desc FROM collapsed_building WHERE collapsed_building.b_name **LIKE '%" + crimewithdate.text2 + "%'"**;
not like what you wrote...
Web Developer @ Silverkey Egypt
i have a problem with ProfileBindings and extenders in AJAX and ASP.NET 3.5, i put a profile property in the web.config file and i set it in a webform CORRECTLY, in another webform i tried to bind this profile property with the ENABLED property of a DropShadowExtender like this:**
Enabled="True" TargetControlID="Button1"> ProfilePropertyName="ProfileProperty" />
**anything wrong about that????!!!!!!!!!!!!!!! it's not working, please help me with it... thnx in advance...
Web Developer @ Silverkey Egypt
the page has been posted back and redrawn to the client, now the page is still, and there're some threads that run behind that page, every one has to put a list item in that listbox after it finishes its work, can i do that without refresh the page, or are there any other alternatives that i can solve this problem.....
it's a server-side control, i wanna make it just like AJAX scenario, plz help the problem is i can't refresh the page from other class defined in the page class, i pass the httpcontext to that class, and i have an error message tells me : cannot redirect the page after the http header has been written, how can i resolve this error help meeeeeeeeeee
i have a webform, with a button and a listbox, when i click on the button it should run many threads, and when each one finishes its work it should add an item in that listbox indicating that it's finished, so the problem is that i need to make a thread to add an item in a listbox when it's finished working, sould i need to refresh the page, or what...??? plz help me:((
i need to know how to make a program runs with the shell with no need to log into my windows account to have this program running
when i use an SqlDatasource with a gridview control in a web form, is this "Online" or "Offline" mode according to ADO.NET 2.0 , thnx
yea, thnx dude, i appreciate it too much
can anyone tell me plz what all i have to do to run .net framework on my pc and also use WPF. thnx