Forum: ASP.NET Sep 26th, 2009 |
| Replies: 4 Views: 321 |
Forum: ASP.NET Sep 25th, 2009 |
| Replies: 5 Views: 385 |
Forum: ASP.NET Sep 25th, 2009 |
| Replies: 5 Views: 385 there are many accordion menu javascripts out web. search google with those keywords. |
Forum: ASP.NET Sep 25th, 2009 |
| Replies: 4 Views: 321 Use fully qualified class names and it will solve the problem, or post your project in its entirety. |
Forum: ASP.NET Sep 25th, 2009 |
| Replies: 5 Views: 385 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: 368 ok then, mark the thread as solved. |
Forum: ASP.NET Sep 24th, 2009 |
| Replies: 7 Views: 368 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: 368 |
Forum: ASP.NET Sep 24th, 2009 |
| Replies: 7 Views: 368 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 23rd, 2009 |
| Replies: 2 Views: 452 n-tier is a bad choice of word to begin with. three tier or four tier is good. |
Forum: ASP.NET Sep 18th, 2009 |
| Replies: 3 Views: 302 ok, remind me, on monday i will answer your question. |
Forum: ASP.NET Sep 18th, 2009 |
| Replies: 10 Views: 3,007 |
Forum: ASP.NET Sep 18th, 2009 |
| Replies: 10 Views: 3,007 in the beginning of each post there is a "add to serkan's reputation" link , you basically click on it and then select agree radio button then type something then click ok. |
Forum: ASP.NET Sep 18th, 2009 |
| Replies: 10 Views: 3,007 Be generous to add to my reputation :) |
Forum: ASP.NET Sep 17th, 2009 |
| Replies: 2 Views: 347 >make as solved if so, thanks
you got our conventions although being a light poster :) |
Forum: ASP.NET Sep 17th, 2009 |
| Replies: 2 Views: 467 why do you need asp or .net, use wordpress, it has hundreds of configurable templates. |
Forum: ASP.NET Sep 17th, 2009 |
| Replies: 3 Views: 382 shouldnt this enablePasswordRetrieval be set to true? |
Forum: ASP.NET Sep 17th, 2009 |
| Replies: 3 Views: 302 in the code file right after your upload method add
Response.write("<script>alert('uploaded');</script>"); |
Forum: ASP.NET Sep 17th, 2009 |
| Replies: 3 Views: 487 each document(window) in frameset has their own unique session variables, so it is normal that you lose them. avoid framesets in .net applications. you have user controls, master pages as substitues. |
Forum: ASP.NET Sep 17th, 2009 |
| Replies: 3 Views: 737 |
Forum: ASP.NET Sep 17th, 2009 |
| Replies: 2 Views: 286 |
Forum: ASP.NET Sep 17th, 2009 |
| Replies: 10 Views: 3,007 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: 3,007 working sample is attached to this post. |
Forum: ASP.NET Sep 17th, 2009 |
| Replies: 10 Views: 3,007 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: 3,007 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: 666 |
Forum: ASP.NET Sep 16th, 2009 |
| Replies: 2 Views: 256 |
Forum: ASP.NET Sep 16th, 2009 |
| Replies: 3 Views: 649 One addition to reputation is worth thousand thanks :)
you are welcome :) |
Forum: ASP.NET Sep 15th, 2009 |
| Replies: 4 Views: 444 i will give you a working sample when i get home. |
Forum: ASP.NET Sep 14th, 2009 |
| Replies: 1 Views: 274 for asp there is a dedicated forum, you should post your question to there. |
Forum: ASP.NET Sep 14th, 2009 |
| Replies: 4 Views: 328 |
Forum: ASP.NET Sep 14th, 2009 |
| Replies: 1 Views: 353 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: 666 your image link is broken. |
Forum: ASP.NET Sep 14th, 2009 |
| Replies: 2 Views: 340 http://www.daniweb.com/forums/thread113301.html |
Forum: ASP.NET Sep 14th, 2009 |
| Replies: 2 Views: 402 can it be ContentType="application/xml"/ ? |
Forum: ASP.NET Sep 14th, 2009 |
| Replies: 3 Views: 283 why dont you use a web service? |
Forum: ASP.NET Sep 14th, 2009 |
| Replies: 4 Views: 444 post your databinding code, yes you can use repeater or datalist. |
Forum: ASP.NET Sep 14th, 2009 |
| Replies: 2 Views: 367 |
Forum: ASP.NET Sep 14th, 2009 |
| Replies: 2 Views: 367 you should post your sign in code to correct your sign out code. |
Forum: ASP.NET Sep 14th, 2009 |
| Replies: 11 Views: 694 Create a class and add these two methods to it :
// for postback events
public static void ShowMessageBox(string _message)
{
Page page = HttpContext.Current.Handler as Page;
... |