Jump to content

Lavdim

Member
  • Posts

    18
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Norway

About Lavdim

Lavdim's Achievements

0

Reputation

  1. I have tried doing the same thing, but I have not been able to make it work. I`m not sure if that`s possible..
  2. Hello everyone! All my pages are build in vb.net language. How can I update several frames on my side? Each time I send a request to the server it only updates the mainframe..
  3. 4 words for Google Desktop: Not Gonna Use It!!!!
  4. If you open several windows it get`s pretty messy.. because u see the others windows also. But the idea is very good.. There should have been an option to hide other windows that shows on the background.
  5. Hi! I have a asp:menu that I want to show on every of my others forms.. But I get the error message "A page can have only one server-side Form tag. Thats because the asp:menu must have runat="server" and it must be under a form that has the tag runat="server" And because of the form where I want to include the menu also has runat="server" I get the error message. Is there anyone that can help me??? Pleeeassse!!
  6. Hi! I have a asp:menu that I want to show on every of my others forms.. But I get the error message "A page can have only one server-side Form tag. Thats because the asp:menu must have runat="server" and it must be under a form that has the tag runat="server" And because of the form where I want to include the menu also has runat="server" I get the error message. Is there anyone that can help me??? Pleeeassse!!
  7. I have made a contact form on a web-site, where one of the fields to fill out is the senders e-mail adress. When I try sending a mail to my self on a hotmail acount, the Hotmail always puts the email on the Junk E-mail folder. It stands that the sender-Id cannot be controlled.. This is the code that I use.. <%@ Import Namespace="System.Web.Mail" %> <script runat="Server"> Sub Button_Click( s As Object, e As EventArgs ) SmtpMail.Send( _ mailfrom.Text, _ mailto.Text, _ mailsubject.Text, _ mailbody.Text ) End Sub </Script> <html> <head><title>SendMail.aspx</title></head> <body> <h1>Send Mail:</h1> <form runat="Server"> <b>From:</b> <br> <asp:TextBox ID="mailfrom" Columns="50" Runat="Server" /> <p> <b>To:</b> <br> <asp:TextBox ID="mailto" Columns="50" Runat="Server" /> <p> <b>Subject:</b> <br> <asp:TextBox ID="mailsubject" Columns="50" Runat="Server" /> <p> <b>Body:</b> <br> <asp:TextBox ID="mailbody" TextMode="Multiline" Columns="50" Rows="10" Runat="Server" /> <p> <asp:Button Text="Send!" OnClick="Button_Click" Runat="Server" /> </form> </body> </html>
  8. I have managed to add elements to the ArrayList that I have created. But now I have problems to get the elements that I have stored. For the moment they are not stored in any file, only in the buffer when I execute the program. I have 5 attributes that I store, 4 are String, 1 is int. This is how I have tried to get them:(Arrangements is the arraylist) for (int i = 0; i < Arrangements.size(); i++) { System.out.println(Arrangements.get(i)); }
  9. Oh sorry...I have forgotten to say wich language.. it`s Java.
  10. How can I add elements to a arraylist(I have 5 attributes to add to the arraylist,thoose should be added as the user type them), then save them to a file and be able to read the elements from the file again. I apriciate all help!
  11. Lavdim

    Icons

    I hava Office 2003 installed, somhow all the documents-icons has been changed to Wordpad-icons.. thoose are very ugly. How can I fix this.. ??
  12. I have tried several times installing Visual Studio.NET 2003 Pro on my computer without sucsess. I have pre-installed the software that was necessary before beginning with the installation of VB.NET.. Once I have got the error message: Eternal error 25003, other times the installation just freeze when it`s generating the setup script.. Does anybody have any idea of what it can be??
×
×
  • Create New...