Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
H

hounetdev

@hounetdev
About
Posts
35
Topics
27
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Emailing the actual gridview
    H hounetdev

    you say the gridview is rendered as a table, i have the screen with the gridview on it how do i get that gridview into the email body? That is the step i am unsure of. thanks,

    ASP.NET html help tutorial

  • Emailing the actual gridview
    H hounetdev

    When i do searchs on emial gridview, the results i get are on how to email from a gridview. i want to email the gridview itself. Put it in the body of an html email. Thanks for the help.

    ASP.NET html help tutorial

  • asp.net navigation?
    H hounetdev

    Hello, I am new to asp.net, I was previously using FrontPage and ASP. I have built a ASP.net application and i want to add the navigation and theme to it in frontpage. I added shared borders and have added the banners and navigation links, and they show up in frontpage but when i view the pages in the browser they don't show up. What am i doning wrong? Or is there a way to set up a navigation sturcture in asp.net? Santana

    ASP.NET csharp asp-net question

  • problem sending attachments???
    H hounetdev

    Hello, I set up an email form, it works fine, with the exception of the attachments. It sends the email but not the attachment, when i remove the try catch i get the following error. Ill post the code below the error. ERROR: Invalid mail attachment 'C:\Documents and Settings\smariscal\My Documents\OliverGonzalez.doc' CODE: Sub btnSend_Click_1(sender As Object, e As EventArgs) Dim objMail As New MailMessage Dim objConn As SmtpMail Dim objAttach As MailAttachment dim postedFile = txtAttachment.PostedFile Dim strPath As String = "" Try strPath = Path.GetFullpath(postedFile.FileName) Catch End Try 'response.write(strPath) 'response.write(mappath("4.doc")) objMail.From = txtFrom.Text objMail.To = txtTo.Text objMail.Subject = txtSubject.Text objMail.Body = txtMessage.Text If ddlPriority.SelectedItem.Text = "Low" Then objMail.Priority = MailPriority.Low ElseIf ddlPriority.SelectedItem.Text = "Normal" Then objMail.Priority = MailPriority.Normal Else objMail.Priority = MailPriority.High End If objMail.Cc = txtCC.Text objMail.Bcc = TxtBCC.Text Try objAttach = New MailAttachment(strPath) objMail.Attachments.Add(objAttach) Catch End Try objConn.Send(objMail) End Sub THank you,

    ASP.NET help question

  • Compilation Error?????
    H hounetdev

    Hello, I am trying to set a property for a button to false on load, but i keep getting this error. Does anyone know why and/or how to fix it please let me know. ERROR: 'Boolean.True' is not accessible in this context because it is 'Private' Thank you, Santana

    ASP.NET help tutorial question

  • Passing value to a popup window???
    H hounetdev

    Ok, I am Poping up a window, but i want to pass it a value from the opener window. How would i go about doing that? Here is how i am opening the new window. Dim myScript As String = "window.open('datafilter.aspx') </" + "script>" Sub button1_Click(sender As Object, e As EventArgs) Page.RegisterStartupScript("OpenWindowScript", myScript) end sub Thank you, Santana </x-turndown>

    ASP.NET tools question

  • how to query a dataset?
    H hounetdev

    I want to query a dataset is there a way to do that if so does anyone have any example? Thank you, Santana

    ASP.NET tutorial database question

  • viewing access report throught asp.net???
    H hounetdev

    Ok, I want to view an access report in the browser using ASP.NET. I found some vb.net code that i thought would work in asp.net but it didn't, there is what i found, if anyone knows how to make this work in asp.net or has any other ideas please let me know. Thank you, Santana Dim appAccess as new Access.Application appAccess.OpenCurrentDatabase "Q:\books.mdb" 'The following line views the report appAccess.Visible = True appAccess.RunCommand acCmdAppMaximize appAccess.DoCmd.OpenReport "rpt_1", acViewPreview 'The following line prints the report 'appAccess.DoCmd.OpenReport "ReportName, acViewNormal appAccess.CloseCurrentDatabase appAccess.Quit appAccess = Nothing

    ASP.NET csharp asp-net tutorial question

  • Validation Question??
    H hounetdev

    I have a form with may textboxes. what i want to do is causevalidation with two buttons for different boxes. for example button1 validates only textbox1 and button two validates textboxes2 and 3, and not textbox1. it i turn on cuasevalidation for both buttons they both validate all the textboxes. Does anyone have any idea on how to do this? all the textboxes and buttons are server side, and on the same page, I am using ASP.NET with VB. Thank you, Santana

    ASP.NET tutorial question csharp asp-net sysadmin

  • Validation??????
    H hounetdev

    Hello, I have an ASP.NET, i am using VB. I am using requiredfieldvalidator to check some textboxes. It is working fine, the problem i am having is that i have two buttons on the page and i only want the validation to happen when one is clicked and it is currently happening for both. How do I get it to only happen with one button? The textboxes and buttons are all serverside controls. Thank you, Santana

    ASP.NET question csharp asp-net help

  • How: Get value of dropdownlist in a loop?
    H hounetdev

    Ok, I can get the value of a dropdownlist buy doing this: dropdownlist1.selecteditem.value, i have left the default id for all the dropdownlists i have on the page. What I am trying to do is get the value in a loop. here is a simple example of what i am trying to do and what. dim temp as string for i=1 to 10 temp = dropdownlist(i).selecteditem.value next Obviously that didn't work so i tryed temp = dropdownlist"+cstr(i)+".selecteditem.value that also is not working, can anyone help. Thank you, Santana

    ASP.NET help tutorial question

  • How to: ?????
    H hounetdev

    Using ASP.NET (VB), i have a query function that returns in result. Right know i the function returning a dataset. when i call the function I want to assign the returned value to a textbox. i know it is returning a value because i assigned the result to a datagrid and binded it so it showed it to me. How do I make the returned dataset(result) show up in the textbox? i will put what i have tried below. Sub Button1_Click(sender As Object, e As EventArgs) textbox1.text = MyQueryMethod("emp","task","division","client","04/01/2004","05/25/2004") end sub Thanks, Santana

    ASP.NET question csharp asp-net database tutorial

  • how to loop through table?
    H hounetdev

    Thanks that worked. Santana

    ASP.NET question csharp asp-net tutorial

  • how to loop through table?
    H hounetdev

    do you happen to have an example? I just need to know the right format/syntax. thank you Santana

    ASP.NET question csharp asp-net tutorial

  • how to loop through table?
    H hounetdev

    Shravan, First thanks for the help. but i am trying to loop through a html table not t dataset or datatable. I created a html table and i want to loop through the cells. Another thing i am using asp.net with (VB). Thank you, Santana

    ASP.NET question csharp asp-net tutorial

  • how to loop through table?
    H hounetdev

    How do i loop through a table. I am using asp.net with (VB). i know how to create the loop just not how to call the table and its rows and cells what is the syntax for that? Thank you, Santana

    ASP.NET question csharp asp-net tutorial

  • loop through controls in a table?
    H hounetdev

    I want to loop throught controls, more specifically textboxes in a table. I am kinda new to asp.net and am using vbscript if any one can help i would greatly appriciate it. Thank you, Santana

    ASP.NET csharp asp-net help question

  • Loop through a table?
    H hounetdev

    I have a table with textboxes in the cells the textboxes start at 4 and go to 171. The table has 7 columns and 24 rows. Is if the text box contains a value other than zero (which is the default) save the cell in a database. I know how to do the insert SQL statement and how to get the information from the textbox. The question I have is how I loop through the table cells. Here is an example of how I think it should look, but I don’t think I have the right syntax and/or correct wording on how to do it in ASP.NET (vb). For i=1 to 7 For j=1 to 24 temp=request.form(“textbox in current cell”)) if temp <> 0 then myinsertmethod(temp, label3.text, etc.) end if next next This is the structure of the way I think it should be built, if I am doing it wrong or there is a better way please let me know. Thank you, Santana

    ASP.NET database tutorial question csharp asp-net

  • looping through textboxes
    H hounetdev

    Ok, I am trying to loop through 6 textboxes to check,if they are blank replace with zero. i can do this with each one but i want to put it in a loop for efficiancy. here is what i want to do dim i as integer for i=1 to 6 if textbox(i).text ="" then textbox(i).text = 0 end if I get this error 'textbox' is a type and cannot be used as an expression, and it highlights this line - if textbox(i).text="" then Thanks for the help, Santana

    ASP.NET help

  • backward format a date?
    H hounetdev

    I want to backward format a date to the number. Does anyone know how to do that? Like take 01/01/2003 and get the number value. Thanks Santana

    Visual Basic tutorial question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups