Forum: ASP.NET Sep 25th, 2009 |
| Replies: 5 Views: 334 |
Forum: ASP.NET Sep 25th, 2009 |
| Replies: 5 Views: 334 there are many accordion menu javascripts out web. search google with those keywords. |
Forum: ASP.NET Sep 25th, 2009 |
| Replies: 5 Views: 334 you can insert some javascript to do what you want but i dont think it is a good idea. you dont know the internal workings of those built-in ajax toolkit controls, so you may get unexpected results... |
Forum: ASP.NET Sep 24th, 2009 |
| Replies: 7 Views: 326 ok then, mark the thread as solved. |
Forum: ASP.NET Sep 24th, 2009 |
| Replies: 7 Views: 326 also post how you call StreamFile(ByVal Q As String),
i think your parameter has a problem. and also post the exact path you want to specify. |
Forum: ASP.NET Sep 24th, 2009 |
| Replies: 7 Views: 326 |
Forum: ASP.NET Sep 24th, 2009 |
| Replies: 7 Views: 326 As far as i know, tilde does not mean anything unless you use it at the very beggining of your path, in which case it would refer to your root application folder. I think you should use... |
Forum: ASP.NET Sep 17th, 2009 |
| Replies: 10 Views: 2,456 Just in case you cant run the attachment :
Default.aspx :
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD... |
Forum: ASP.NET Sep 17th, 2009 |
| Replies: 10 Views: 2,456 working sample is attached to this post. |
Forum: ASP.NET Sep 17th, 2009 |
| Replies: 10 Views: 2,456 here you go :
<script language="javascript" type="text/javascript">
// <!CDATA[
function Button1_onclick() {
var inputs = document.forms[0].elements;
for(var i=0;i< inputs.length;i++)
{... |
Forum: ASP.NET Sep 17th, 2009 |
| Replies: 10 Views: 2,456 i think that method is not getElementByTagName, but getElementsByTagName, so it is plural basically. try that way. |
Forum: ASP.NET Sep 17th, 2009 |
| Replies: 4 Views: 589 |
Forum: ASP.NET Sep 14th, 2009 |
| Replies: 1 Views: 328 you can do that using javascript.
<script language="javascript" type="text/javascript">
function stopRKey(evt) {
var evt = (evt) ? evt : ((event) ? event : null);
var node = (evt.target) ?... |
Forum: ASP.NET Sep 14th, 2009 |
| Replies: 4 Views: 589 your image link is broken. |
Forum: ASP.NET Sep 14th, 2009 |
| Replies: 2 Views: 377 can it be ContentType="application/xml"/ ? |
Forum: ASP.NET Sep 14th, 2009 |
| Replies: 3 Views: 567 it is a well known thing
http://rumandcode.wordpress.com/2008/08/11/javascript-confirm-on-aspnet-button/ |
Forum: ASP.NET Aug 27th, 2009 |
| Replies: 4 Views: 806 you can do that with javascript, post it to javascript forum. if your button is a server control then you need its clientID to change its background color. Or if you have a specific place for the... |
Forum: ASP.NET Aug 19th, 2009 |
| Replies: 10 Views: 775 |
Forum: ASP.NET Jul 8th, 2009 |
| Replies: 7 Views: 369 http://www.asp.net/learn/videos/video-49.aspx |
Forum: ASP.NET Jul 8th, 2009 |
| Replies: 7 Views: 369 you can use objectdatasource control and when configuring it there is parameter section, set it to get parameter from the first gridview then generate your select statement to fill the second... |
Forum: ASP.NET Jul 2nd, 2009 |
| Replies: 7 Views: 256 missbeginner, do you know how to debug an application? |
Forum: ASP.NET Jul 2nd, 2009 |
| Replies: 7 Views: 256 in other words, why dont you debug it ? :) |
Forum: ASP.NET Jul 2nd, 2009 |
| Replies: 7 Views: 256 when i was a beginner and asked such questions, my co-workers would ask me "have you debugged the code". that is what i suggest to you, put a break point to your switch case and then start debugging.... |
Forum: ASP.NET Jun 29th, 2009 |
| Replies: 10 Views: 775 i think what you need is a self-referencing table, so the records will have two fields one of which is primary key and the other one is foreign key to its parent. by doing that you can have limitless... |
Forum: ASP.NET Jun 22nd, 2009 |
| Replies: 15 Views: 1,349 instead of client-side use viewstate which is more secure, or you can write to cookies of the user, which is not hundred percent sure as user might have disabled them. search google with using... |
Forum: ASP.NET Jun 20th, 2009 |
| Replies: 15 Views: 1,349 i am glad that you figured it out but for future visitors let me show what must be modified :
<asp:TextBox runat="server" ID="monday" onkeyup="TextChanged" />
function TextChanged() {
... |
Forum: ASP.NET Jun 20th, 2009 |
| Replies: 15 Views: 1,349 please mark this as saved. |
Forum: ASP.NET Jun 19th, 2009 |
| Replies: 15 Views: 1,349 mhm the problem is this, i didnt look at your javascript code, when a server control is rendered to a browser, its id changes. you can either pass the generated id from code as... |
Forum: ASP.NET Jun 19th, 2009 |
| Replies: 15 Views: 1,349 remove onkeyup from this section
asp:TextBox runat="server" ID="monday" onkeyup="TextChanged" />
it should be only added from code behind and during page load event. you are trying to add the same... |
Forum: ASP.NET Jun 19th, 2009 |
| Replies: 15 Views: 1,349 just go to your page load event of your page then you are going to add this javascript events to your asp.net texbox controls as follows:
... |
Forum: ASP.NET May 21st, 2009 |
| Replies: 4 Views: 1,637 http://www.daniweb.com/forums/thread78963.html |
Forum: ASP.NET May 4th, 2009 |
| Replies: 10 Views: 1,353 you said you dont have update panels, i see that you have update panels and script managers on your page. as i said this problem is caused by that update panels. if it is not necessary to have them... |
Forum: ASP.NET May 4th, 2009 |
| Replies: 10 Views: 1,353 why dont you post mark up of your web page? it is hard to infer something without seeing it. |
Forum: ASP.NET May 2nd, 2009 |
| Replies: 10 Views: 1,353 that problem occurs in ajax enabled websites as far as i experienced. |
Forum: ASP.NET May 1st, 2009 |
| Replies: 10 Views: 1,353 remove update panels then try again. |
Forum: ASP.NET Mar 15th, 2009 |
| Replies: 3 Views: 789 here is the webform1.aspx :
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication3.WebForm1" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0... |
Forum: ASP.NET Mar 15th, 2009 |
| Replies: 1 Views: 780 i think inheriting from sqlmembership provider is better, if that is what you mean by custommembership provider. Or you can create your own role and member classes and database tables without... |
Forum: ASP.NET Feb 28th, 2009 |
| Replies: 1 Views: 646 in asp.net you dont need to code that thing, there is an adrotator control that does it automatically for you. |
Forum: ASP.NET Feb 22nd, 2009 |
| Replies: 2 Views: 606 you should use these in web.config file, not within your html tags. |
Forum: ASP.NET Feb 15th, 2009 |
| Replies: 2 Views: 432 msdn library is the best reference book. if you want to learn asp.net well, try apress books. |