yes,i can see from outside home
Known Is Drop.Unknown Is Ocean
yes,i can see from outside home
Known Is Drop.Unknown Is Ocean
hi thanks for reply Already i tried in live server what you have mentioned(http://192.158.74.120/images/main.jpg)..but it is also not working...
Known Is Drop.Unknown Is Ocean
hi friends <td style="background: url(http://localhost/images/main.jpg) no-repeat top left; width: 684px;> In my html mail template,i have used above code for backround image,my problem is the backround image not display in gmail,yahoo,hotmail..etc how can solve this?
Known Is Drop.Unknown Is Ocean
hi friends In my button click,i opened two browser window seperately,now i want to open the two tab in same browser window instead of open two window seperately(IE only)... can any one help?
Known Is Drop.Unknown Is Ocean
thanks for reply Dim objcookies As HttpCookie = New HttpCookie("SalesLogin") objcookies.Domain = Request.ServerVariables("HTTP_HOST") objcookies.Secure = True objcookies.Values.Add("AdminType", Session("AdminType")) objcookies.Values.Add("AdminId", Session("AdminId")) objcookies.Expires = DateTime.Now.AddDays(1) Response.Cookies.Add(objcookies) thisis my code
Known Is Drop.Unknown Is Ocean
hi friends i need to create the cookie in domain name.. For example: my cookie file named as "administrator@localhost.txt" but i need to create "administrator@mydomainname.txt" i tried like this Dim objcookies As HttpCookie = New HttpCookie("SalesLogin") objcookies.Domain="www.mydomain.com" but it is not created... can any one help me?
Known Is Drop.Unknown Is Ocean
hi friends In asp 2.0,we have File upload control,In this control allow to upload the multiple file (If you browse the button,Upload window will be open and select the multiple file into upload window..finally we upload the file) In asp 1.1 ,we have html file upload control,here i need to open the upload window and select multiple file into upload window..finally upload the all the files.. but asp1.1,select single file only into upload window..i need to select more file into upload window Is it possible?
Known Is Drop.Unknown Is Ocean
hi You get query string value like this String str=REquest.querystring("id")
Known Is Drop.Unknown Is Ocean
hi Code behind: Dim dgitem As DataGridItem For Each dgitem In Dgdisplay.Items If cacheRankingName = "cumulativeranking" Then 'If dgitem.ItemType.Item = ListItemType.Header Or dgitem.ItemType.Item = ListItemType.AlternatingItem Or dgitem.ItemType.Item = ListItemType.Item Then Dim dt As New DataTable qrytoExecute = "select playerid, firstname , lastname, scores.points as leaderboarddisplay from scores " & qrytoAdd qrytoExecute &= "group by scores.playerid order by leaderboarddisplay desc, playerid limit 30 " dt = DBManager.GetDataTable(qrytoExecute) For i = 0 To dt.Rows.Count - 1 Dim id As String = dt.Rows(i)("playerid").ToString() Dim Query As String = "select concat(p.firstname,p.lastname) as Name from player p join scores s on s.playerid=p.userid where s.playerid=" & id Dim retVal = DBManager.GetScalar1(Query) Dim lbl As Label Dim intCounter As New Integer Dim str As String = DirectCast(dgitem.Cells(0).Controls(0), Label).Text 'If txtHNGet.Text = retVal Then ' 'flag = True ' dgitem.Cells(1).BackColor = System.Drawing.Color.DarkRed 'End If Next End If 'End If Exit For Next End If Html: <asp:datagrid id="Dgdisplay" EnableViewState="False" Runat="server" PageSize="50" GridLines="None" AutoGenerateColumns="False" Width="65%" AllowPaging="True"> <Columns> <asp:TemplateColumn HeaderStyle-Font-Bold="True" HeaderText="Rank"> <ItemTemplate> <asp:Label ID="lblrank" Runat="server"> <%#getRank%> </asp:Label> </ItemTemplate> </asp:TemplateColumn> <asp:TemplateColumn HeaderStyle-Font-Bold="True" HeaderText="Playername"> <ItemTemplate> <a href='DisplayPlayerBioData.aspx?ids=<%#Container.DataItem("playerid")%>'> <%#getPlayerName(Container.DataItem("firstname"),Container.DataItem("lastname"))%> </a> </ItemTemplate> </asp:TemplateColumn> <asp:TemplateColumn HeaderStyle-Font-Bold="True" HeaderText="Count#"> <ItemTemplate> <asp:Label ID="lblcount" Runat="server"> <%#DataBinder.Eval(Container.DataItem,"leaderboarddisplay")%> </asp:Label> </ItemTemplate> </asp:TemplateColumn> <asp:TemplateColumn Visible="False"> <ItemTemplate> <asp:Label ID="lbl1" Runat="server"> <%#getPlayerName(Container.DataItem("firstname"),Container.DataItem("lastname"))%> </asp:Label> </ItemTemplate> </asp:TemplateColumn> </Columns> <PagerStyle Mode="NumericPages" ForeColor="#003300"
ExecuteScalar:Connection property has not been initialized
Known Is Drop.Unknown Is Ocean
thanks for reply but same error occured
Known Is Drop.Unknown Is Ocean
hi friends this is my function: Function GetRedPlayer() As String Dim dt As New DataTable Dim i As Integer Dim dt1 As New DataTable Dim j As Integer Dim flag As Boolean = False Dim sessonid As Integer = UserInfo.GetCurrentSeasonid() Dim sqlquery As String = "select tavernid from tavern where paid=0" dt = DBManager.GetDataTable(sqlquery) If dt.Rows.Count > 0 Then 'Get tavernid For i = 0 To dt.Rows.Count - 1 Dim Tv_id = dt.Rows(i)("tavernid").ToString() '14 days current date Dim For14GetDate As String = DateTime.Now.AddDays(-14).ToString() Dim For14daysCurrentdate As String = For14GetDate.Substring(0, 9) 'current date Dim GetDate As String = DateTime.Now.ToString() Dim Currentdate As String = GetDate.Substring(0, 9) Dim sqlqueryGetplayerid As String = "select Eventid from pokerevents where tavernid=" & Tv_id & " and seasonid = " & sessonid & " And tournamentdate >" & For14daysCurrentdate & " And tournamentdate <= '" & Currentdate & "'" dt1 = DBManager.GetDataTable(sqlqueryGetplayerid) If dt1.Rows.Count > 0 Then For j = 0 To dt1.Rows.Count - 1 'Get eventid Dim Ev_id = dt1.Rows(j)("eventid").ToString() Dim StrScoreQuery As String = "Select points from scores where eventid=" & Ev_id & "" Dim retVal As Int64 = DBManager.GetScalar(StrScoreQuery) If flag = False Then 'begin flag If retVal = -2 Then flag = True Dim SqlQueryGettavernID As String = "select tav.tavernid as tavernid from tavern tav join pokerevents pe on tav.tavernid=pe.tavernid where pe.eventid =" & Ev_id & "" Dim TavidIsred As Integer = DBManager.GetScalar(SqlQueryGettavernID) Dim updateQueryForRed As String = "update tavern set Isred=" & 0 & " where tavernid=" & TavidIsred & "" DBManager.GetNameValueColl(updateQueryForRed) Else Dim SqlQueryGettavernIDForNotRed As String = "select tav.tavernid as tavernid from tavern tav join pokerevents pe on tav.tavernid=pe.tavernid where pe.eventid =" & Ev_id & "" Dim TavidIsnotred As Integer = DBManager.GetScalar(SqlQueryGettavernIDForNotRed) Dim updateQueryForNotRed As String = "update tavern set Isred=" & 1 & " where tavernid=" & TavidIsnotred & "" DBManager.GetNameValueColl(updateQueryForNotRed) End If End If ' End flag Next End If Next End If End Function here i get near 5500 record in datatable and looping through that time i got error "ExecuteScalar:Connection property has not been initialized" like this in below function Getscalr function: Shared Function GetScalar(ByVal query As String) As Int64 Dim myconnGS As New OdbcConne
Restiction of my company
Known Is Drop.Unknown Is Ocean
yes the file is avialable that path I am unable to use google
Known Is Drop.Unknown Is Ocean
hi Actually i load the sxlt file like this: Dim XslDoc As New XslTransform XslDoc.Load("D:\aesweb\newpoker\EMAILDATA\xslfileOld.xslt") i got the error: The expression passed to this method should result in a NodeSet. can anyone help me?
Known Is Drop.Unknown Is Ocean
hi friends i need to Pass the value code behind to xslt file example: String str="test" i pass this value in Myxslt.XLST difilr
Known Is Drop.Unknown Is Ocean
thanks for reply Abhijit For example: i get client id button1 in codebehind I need to set button back color using this button1 id.. Is this possible?
Known Is Drop.Unknown Is Ocean
hi thanks for reply hidden field: <input name="hd1" id="hd1" type="hidden" /> jsscript: function test() { // document.forms.tstformfortavern.hd1.value=document.getElementById("button1"); document.getElementById("hd1").value=document.getElementById("button1").id; alert(document.getElementById("hd1").value); } i try get value in hdn.value in codebehind.but i didnt get value rs sara
Known Is Drop.Unknown Is Ocean
hi to all how can i get the client id in .net html source: <input type="button" id="button1" class="buttonsT" name="inputval30something^&()%#@!sabs" value="30 Something(1494)" title="Click this Button to log in as 30 Something(1494)" onclick="loginas('30something^&()%#@!sabs');"> this entirly bind in xslt..not in html
Known Is Drop.Unknown Is Ocean
hi My project is hosted the site.. I have the link..if i click the link it will redirect to edit page..but the browser is locked..i could not edit the content..In that time HAND symbol and small Circle with cross like this (X) displayed.. Can u help me... Regs sara
Known Is Drop.Unknown Is Ocean