Search

You searched for the word(s): userid:810673

Matching Posts

  • Re: Passgin a paramater trough pages

    try this Here is my code<br><br>Imports RustemSoft.ExportToPDF Imports System.IO.FileStream Partial Class paginas_detalhe_candidato Inherits System.Web.UI.Page public numero As String = "" Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Dim sExtension As String Dim sFileName As String Dim aux As TextBox aux = FormView1.FindControl("CURRICULOTextBox") sFileName = aux.Text sExtension = sFileName.Substring(sFileName.IndexOf
    Posted to Web Forms (Forum) by venkatu2005 on 11/26/2009
  • Re: 2 questions i have about codeing listBox control.

    [quote user="Jay123____"] My first question is... How do i and another customerList.DataTextField without it throwing a error. basicly i would like first name and last name displayd. i have tried: customerList.DataTextField = "fName" customerList.DataTextField = "LName" [/quote] try this customerList.DataTextField = "fName" & " " & "LName" [quote user="Jay123____"]y second question is How do i make the list box display
    Posted to Web Forms (Forum) by venkatu2005 on 11/26/2009
  • Re: Mail Delivery failure

    [quote user="KumarHarsh"] Hi, What are the various reason for mail delivery failure ? If the mail id is valid,has it got anything to do with programming. Thanks [/quote] It may be if mailbox is not Available or due to some IIS relay setting , you didnt get mail etc.. Could you post your code , let me check../
    Posted to Web Forms (Forum) by venkatu2005 on 11/25/2009
  • Re: Preselecting a radiobutton in a radiobuttonlist with a selectedvalue passed from a database

    What your requirement or issue ?? Let you explain clearly ?
    Posted to Web Forms (Forum) by venkatu2005 on 11/25/2009
  • Re: calling TextBox.Text value into mailto: subject

    if you are goin to get the textbox value on the HTML you have to use like this Text= '<%= Textbox1.Text %>'
    Posted to Web Forms (Forum) by venkatu2005 on 11/25/2009
  • Re: Alligning textBox's

    [quote user="Jay123____"]So my question is what ways are there to align text boxes like this, and what is the best way.[/quote] try this <table width="50%"> <tr> <td style="width:20%;">Car</td> <td style="width:30%;">TEXT box here</td> </tr> <tr> <td style="width:20%;">Aeroplane</td> <td style="width:30%;">TEXT box here</td> </tr> <tr> <td style="width
    Posted to Web Forms (Forum) by venkatu2005 on 11/25/2009
  • Re: Page Refresh Problem..!!

    [quote user="krAzyk"]happening with all manipulations...edit,delete,add ...!![/quote] Hi, open it on same page ie if u click the delete button why are u navigate to other page on the same plage pass the RowId on Query string and delete the Row and rebind the Gridview.
    Posted to Web Forms (Forum) by venkatu2005 on 11/25/2009
  • Re: Page Refresh Problem..!!

    hi place the page_Load code on OnPostback protected void Page_Load(object sender, EventArgs e) { If(!IsPostBack) { con.Open(); OleDbCommand dcmd = new OleDbCommand("SELECT Code,App_Des FROM ApplicationMaster", Lmcon); OleDbDataAdapter dda = new OleDbDataAdapter(dcmd); DataSet ds = new DataSet(); dda.Fill(ds); GridView1.DataSource = ds; GridView1.DataBind(); con.Close(); } } Check with Breakpoint when you coming form page2 --- to --- page1.aspx check the dataset. whether its refersh or not
    Posted to Web Forms (Forum) by venkatu2005 on 11/25/2009
  • Re: calling TextBox.Text value into mailto: subject

    [quote user="zoltac007"] You can call the TextBox.Text directly as a parameter of the Eval , it works. <asp:HyperLink ID="HyperLink1" runat="server" NavigateUrl='<%# Eval("CDE_Email", "mailto: {0}&subject=" + TextBox1.Text) %>' Text='<%# Eval("CDE_Email") %>'></asp:HyperLink> [/quote] I have not checked in this way ? any way thanks for your information.
    Posted to Web Forms (Forum) by venkatu2005 on 11/25/2009
  • Re: Page Refresh Problem..!!

    [quote user="krAzyk"] in debugging....while directing from 2nd page to 1st page..it is showing changes in dataset bt on 1st page it showing the record..!!! [/quote] It was not occured like this .. as you said the dataset shows correct or exact record, check whether you made any other mistake, definitely the Gridview should show the latest records.
    Posted to Web Forms (Forum) by venkatu2005 on 11/25/2009
Page 1 of 443 (4424 items) 1 2 3 4 5 Next > ... Last »