Post the new connection string
danasegaranea
Posts
-
Could not find installable ISAM. -
Could not find installable ISAM.Do you have the MDB in the Root Directory. Normally this error could be arrive if the path is not mentioned for the datasource. Set the MDB path fully and try
-
Why this ont rendering the Control properlyWorking on it
-
Why this ont rendering the Control properlyThis one I have Already tried. The things is that the HyperLink is Not Causing the CrossPage postback. I need cross Page PostBack
-
Why this ont rendering the Control properlyThanks for the reply darkcalin. The thing is that they have created one user control which gets html tags as input and prints a table. But I I add this to form , my problem is not solved. What I am doing is that creating a control and and rendering its contents to html page. Hope I am clear now
-
Why this ont rendering the Control properlyThis method is not causing the postback event.
-
Why this ont rendering the Control properlyI tried to create one LinkButton. Used this code.
Dim hlink As LinkButton
Dim sw As System.IO.StringWriter
Dim htw As HtmlTextWriter
hlink = New LinkButton
hlink.ID = "ZoneLink"
hlink.Text = "TestButton"
sw = New System.IO.StringWriter
htw = New HtmlTextWriter(sw)
hlink.PostBackUrl = "Default2.aspx"
hlink.RenderControl(htw)
Response.Write(sw.ToString)But only displays the text. No hyperlink is displayed ?
-
UserControlThat works well Now I am trying to add the form gridview controls name inside the Enum ... May be a diffcult task ?
-
UserControlYes Yes
-
UserControlThanks for the reply N a v a n e e t h If add a single value it displays the value How can I add a values like DropdownList ?
-
UserControlHi all, I am building a usercontrol .. When the user dragdrop the user control in the webform, i want to list the gridviewnames in a property of that user controll How can I ? Thanks in Advance Dana
-
Types of JIT3 types of JIT Compilers
-
Types of JITHi All, Could some one explain the three types of JIT Thanks in Advance Dana
-
Reading FileHi All, How can read file located at the C:\ Drive of cleint using FileSystem object Thanks in Advance Dana
-
Image button in GridviewThanks for the reply.. You are in the retriving phase. I am asking how to add a server control to the header ?
-
Image button in GridviewHi All, I am adding one imagebutton in gridview using the "RowDataBound" method. But I could not able to found the onclick/runtat event.. How can i add this one ? ImageButton imgSortAssendingbyId = new ImageButton(); Thanks in Advance Dana
-
Asp:HyperLinkThis is my code
Sub btnProjects_Click Dim retValue If frmHourRegistration.chkShowAll.checked=true then retValue= window.showModalDialog("test.aspx",window, "dialogWidth:550px;resizable:yes") If IsNull(retValue) Then frmHourRegistration.txtProject.Value=Empty frmHourRegistration.hlProject.Value=Empty **//Error** Else frmHourRegistration.txtProject.Value=retValue(0) frmHourRegistration.hlProject.Text=retValue(1) End If End If End Sub
-
Asp:HyperLinkThanks for the reply Sylvester george , It works well in the code behind. But i want to populate from VBScript function. How can I ?
-
Asp:HyperLinkHi all, I am trying to set the text property to the asp:hyperlink control using frmHourRegistration.hlProject.Text="Test" But I am gettting the error as "Method not supported" What I am doing wrong here ?
-
VBScript file in asp.netHi all, How to embed a external vbscript file in asp.net application. Thanks in advance Dana