|
Hi Colin Angus Mackay,
Can you specify any web service that takes IP address and gives back information about WHERE that IP address is located. Any links or ref. would be of great help....
Many Thanks,
~JJ
|
|
|
|
|
|
Thank you very much this is very helpful.
|
|
|
|
|
by viewing the google analytics of a website you can found that
i also dont know how is that possible in asp.net
rgds
anee
|
|
|
|
|
We have a parent page which has got two usercontrols usercontrol1 and usercontrol2. Initially usercontrol1 will be visible=true and usercontrol2 will be visible=false. On click of a button in usercontrol1, usercontrol2 is made visible. During button click, both the controls page load shows ispostback as true. But after making the usercontrol2 visible, the page loads for the second time(both in parent page and usercontrol2), and the ispostback returns false. Please suggest.
|
|
|
|
|
Hello,
I want to display a hirarchical tree structure in form of a network graph, like a set of nodes connected with lines.
Does anybody knows a ASP.NET component which can handle it? I am still using infragistics´s charts for some other charts, but none of its features is able to display data as network graphs.
thanks
Nils
|
|
|
|
|
Dear Friends
I have used gridview in .net 2005.I find difficult in deleting the records.There is an Auto number Id that has to be hidden.For deleting purpose i want to get the Id.
In the user interface of gridview the auto number should not be known.
But i should get that id for delete option in gridview .net 2005.
I hope you will reply me fast
|
|
|
|
|
Add the id in to the datakey names then you can get this id while pressing the delete by
gridView1.DataKeys[e.SelectedIndex].Values[0].ToString();
Thanks
Laddie
Kindly rate if the answer was helpful
|
|
|
|
|
Hi...
I am using datalist. In dat i am binding abea ll like this...
<asp:label id="lblprice" runat="server" text="£(">]]>)'>
Now in codebehind, I am using OnItemDataBound event and want to check if its value is null..
I am taking this labels value in a string & comparing it to "" But the value dat comes in string is £(<%# DataBinder.Eval(Container.DataItem,"Cost","{0:n2}") %>). Nd i want the actual value to be checked. Plz tell me how to solve this...
|
|
|
|
|
write like this
<asp:label id="lblprice" runat="server" text="">]]>' />
This way your expression will be evaluated otherwise Eval will be treated as a string not as an expression
Nobody is perfect i'm Nobody
|
|
|
|
|
Since morning I am not able to access my database. It is marked as Suspect. The server was down in the morning and when it was on , I tried to access my database. However, now I am not able to access it. I even tried searching for the .mdf file. But, I am not able to find it. The size of .mdf is in MBs. I've no latest backup of my database. Now, if I dettach the database from the server or run sp_resetStatus commnad then, the database might not get recovered. So, please help. I need to fix it asap so that I could start my work.
|
|
|
|
|
Any eventlog indications?
Vasudevan Deepak Kumar
Personal Homepage Tech Gossips
A pessimist sees only the dark side of the clouds, and mopes; a philosopher sees both sides, and shrugs; an optimist doesn't see the clouds at all - he's walking on them. --Leonard Louis Levinson
|
|
|
|
|
Hi All,
can anybody help to get OsCommerce packags available in .net(Free version)
Thanks in advance
Jeeva mary Sayan
|
|
|
|
|
Did you do a basic Internet Search on the topic first?
Vasudevan Deepak Kumar
Personal Homepage Tech Gossips
A pessimist sees only the dark side of the clouds, and mopes; a philosopher sees both sides, and shrugs; an optimist doesn't see the clouds at all - he's walking on them. --Leonard Louis Levinson
|
|
|
|
|
hi,
Thanks for the reply.
i did the internet search, but most of the links go to the site
http://www.softpedia.com/get/Internet/WEB-Design/Web-Design-related/AspNet-OsCommerce-Free.shtml
and downloaded the freeversion from the above specified link.but there are some limitations in the freeversion (ie,we cannot do any changes in the database in the free version).
so can u please help me.
Thanks in advance
Jeeva Mary Sayan
|
|
|
|
|
Jeeva Mary Varghese wrote: we cannot do any changes in the database in the free version
You have found it yourself. The trial version or the free one is indicated to give the user as a taste of the application and then he ought to go for a purchase in case they want the full unhindered functioality.
Vasudevan Deepak Kumar
Personal Homepage Tech Gossips
A pessimist sees only the dark side of the clouds, and mopes; a philosopher sees both sides, and shrugs; an optimist doesn't see the clouds at all - he's walking on them. --Leonard Louis Levinson
|
|
|
|
|
Hi,
Thanks for the reply.
i seached here for ,but not getting a good version which is free(we need the free download of the oscommerce package)
If u are familiar with the oscommerce packages ,can u please guide me about it
Thanks in Advance
Jeeva Mary Sayan
|
|
|
|
|
Can we define multiple primary key in datatable in asp.net?
and how to find these primary key.??
Piyush Vardhan Singh
p_vardhan14@rediffmail.com
http://holyschoolofvaranasi.blogspot.com
http://holytravelsofvaranasi.blogspot.com
|
|
|
|
|
What happened when you tried ?
|
|
|
|
|
i created 3 primary key in the data table and bind the grid. when i deleted the row of grid by context menu then i found only one primary key between them. so i want dlt row through any primary key of data table. it is possible. and context menu contain all thrreee primary key.
Protected Sub uxrcMenu_ItemClick(ByVal sender As Object, ByVal e As Telerik.WebControls.RadMenuEventArgs) Handles uxrcMenu.ItemClick
Try
Dim PhoneNo As String = e.Item.Text
_DailNoDataTable = Session("DailNoDataTable")
_DailNoDataTable.Rows.Find(PhoneNo).Delete()
_DailNoDataTable.AcceptChanges()
Session("DailNoDataTable") = _DailNoDataTable
Session("PhoneNo") = PhoneNo
Session("refreshlblSave") = "False"
Response.Redirect("tel:" + PhoneNo)
Catch ex As Exception
End Try
End Sub
Piyush Vardhan Singh
p_vardhan14@rediffmail.com
http://holyschoolofvaranasi.blogspot.com
http://holytravelsofvaranasi.blogspot.com
|
|
|
|
|
A table can have only one primary key. If you add multiple comulns to the primary key, you will get a composite primary key.
You don't need primary keys to find stuff in your table, you can use indexes, datatable.select(), or the dataview class.
|
|
|
|
|
Hi,
I have one input of type Submit button. I have some textbox and label control. I can get the values of that control but now I want to insert these value when I click on submit button.
Reason to take submit button instead of asp:button I am forwarding values to the payment gateway. Payment gatway allow input button.
How can I insert the data.
Thanks
|
|
|
|
|
You need to set the form action to a ASPX page. When submit button is clicked, form will post data to the page specified. In that page look in Request.Form collection.
|
|
|
|
|
I am passing value to payment gateway.Then How can I used Request.Form
|
|
|
|
|
i want to access the virtual directories of remote computer
so can i write the ip address , in place of localhost ?
DirectoryInfo info = new DirectoryInfo("IIS://localhost/W3SVC/1/ROOT/ReportServer001Test");
If you have an apple & I have an apple and we exchange our apples, then each of us will still have only one apple but if you have an idea & I have an idea and we exchange our ideas, then each of us will have two ideas!
|
|
|
|