Jump to content

maelstorm

Members
  • Posts

    54
  • Joined

  • Last visited

Everything posted by maelstorm

  1. Check out these siteshttp://www.4guysfromrolla.com/webtech/111500-1.shtmlUsing Javascripthttp://www.experts-exchange.com/Web/Web_La...Q_20828609.html
  2. Create a cookie:document.cookie = 'myCookie=' + nameprompt +';'Cookies expires: lasts for 7 days.var ckyDate = new Date;ckyDate.setDate(ckyDate.getDate( ) + 7);document.cookie = 'myCookie=' + cookieString + '; expires=' + ckyDate.toGMTString( ) + ';';For over all idea http://www.w3schools.com/js/js_cookies.asp
  3. maelstorm

    SQL Queries

    The error ORA-00904 means that there is no such field "INTEREST", just check ur tables if it has any field by that name.
  4. maelstorm

    SQL Queries

    The error ORA-00904 means that there is no such field "INTEREST", just check ur tables if it has any field by that name.
  5. maelstorm

    help

    I would also suggest ASP.NET, Well if its gonna be a academic project then, i guess it does not need high level authentication, but if its a real time one, u better take aspnetguy's advice serious...
  6. maelstorm

    Datagrid

    Hi How can I change the background color of a selected row in the datagrid, IMPORTANT: the last column of the datagrid contains imagebuttons, which when clicked must change the back ground color of that row.Thank you.
  7. I found a part of what you want( for countries alone), check out the link belowCountry Drop Down list
  8. maelstorm

    Iframe

    Well there was a simple way to put that question, and that is "How to Keep Scroll Position of Scrollable Datagrid on Postback"pretty simple soln in asp.net: In the web.config<system.web> <pages smartNavigation="true"/>
  9. maelstorm

    Iframe

    HI guysThanks for trying to help me, i know the way i put the question was confusing, i got the soln. thanks again.
  10. maelstorm

    Iframe

    Hi There are 2 frames in the site, one "below" the another. The upper frame is (longer) has a scrollbar, when i click the upper frame there will be some change in the lower frame.The problem is that if i scroll down the upper frame to click somthing as the bottom, the lower frame changes and the upper needs to stay in the place where i clicked, instead goes to the top of its page.help!!!
  11. HiThis error could occur bcos of NTFS Permission problem,Give Everyone "Full Control" over the file.HTH
  12. maelstorm

    ASP

    HiYou can use onchange="somefunc();" and change the list in the second combo box.HTH
  13. HiTry writing the url part like thisbackground-image:url("file:///C:\Documents and Settings\Hard\Mine dokumenter\det_femte_ess.gif");HTH
  14. Hi guysI think Skimcin is correct. The Suggestion must be open to all.
  15. HiTry this VB.Net code.. Dim objMM As New MailMessage objMM.From = sender@crap.com objMM.To = reciever@crap.com objMM.Subject = "This is a test mail" objMM.BodyFormat = MailFormat.Html objMM.Body = "Write somthing in the body of the Mail" SmtpMail.SmtpServer = SMTP Server Name SmtpMail.Send(objMM) HTH
  16. HiCheck out this link belowhttp://msdn.microsoft.com/library/default...._ya-yz_0ab6.aspHTH
  17. HII guess this is what you are lookinh for....try this tag.<marquee behavior="scroll" direction="right">Put some text here</marquee>
  18. Hi Check the site belowRefresh Parent Window
  19. maelstorm

    MSDTC

    I am using SQL ServerI have to access the database in one server using a stored procedure which is on a different server, I got an error saying that "server not linked" which I sorted out using EXEC sp_addlinkedserver The two servers are linked now but still cant access the other dbBut now I get a new error "MSDTC not available on server" how to handle this??
  20. Hi I am not sure how well this would work out, just give this a tryCreate a batch file to unzip a file.Call and execute the batch file using vb script.Some links relating to this Run a batch file using vbscriptThe unzip may not be that as you wanted,Unzip a file
  21. HiI tried ur code in VS .NET the when I write the SPAN tag in next line then, it automatically changes in the horizontal manner with a single space between them.<span>a</span><span>b</span><span>c</span><span>d</span><br><span>a</span> <span>b</span> <span>c</span> <span>d</span>
  22. HiTry this code. <html><body id="bodyg" style="FONT-SIZE: 20px"> <script type="text/javascript"> function changeSize(which) { var z; var y; y = document.getElementById("bodyg").style.fontSize z = eval("y") var ilen = z.length; z = z.substring(0,ilen-2); if(which=='0') { z++ } else { z-- //if(z!="1" && z!="0") //{ // z=z+((-1)*z) // } // else // { // return; //} } if(z!="0") { y = document.getElementById("bodyg") y.style.fontSize = z } } </script> <input onclick="changeSize('0')" type="button" value="Larger"> <input onclick="changeSize('1')" type="button" value="Smaller">blahblahblah </body></HTML> HTH
  23. maelstorm

    Frames

    HiThis will remove the border of the frame.frameborder="no" or frameborder="0"
  24. Hi Check this link. Hope this is what you were looking forhttp://aspn.activestate.com/ASPN/docs/PHP/...timagesize.htmlHTH
  25. Hey Carson,Finally got it rightThanks a lot man, you are awesome.........
×
×
  • Create New...