13,153 Topics

Member Avatar for
Member Avatar for praveen_dusari

hi all, iam familier to php forum here but completely new to vb.net, i am developing a web application using oracle database,vb.net and asp.net,just stuck up with generating manage content table with edit and delete you can see it in image file attached which is done in php here is …

Member Avatar for praveen_dusari
0
112
Member Avatar for kanuri1

hi iam trying to insert data into databse through gridview ....... there is no errors showing.............. here the problem is that the grid view cannot be displayed at runtime.. here my coding is given below.......... pls help me......... [CODE] <asp:GridView ID="GridView1" runat="server" style="z-index: 100; left: 44px; position: absolute; top: 41px" …

0
78
Member Avatar for sarmadirizvi

Hi friends! I have a listview that shows the user the details of the members who have sent friendship request. The table from which the data come has two fields namely, sender_id[id of the one who sends friendship request] and receiver_id[id of the one to whom the request is sent]. …

0
52
Member Avatar for shiva4dotnet

Is there any way so that I can get the pubic Ip of the request which comes from the LAN using ASP.NET and c#...i need it very urgent

Member Avatar for kvprajapati
-1
27
Member Avatar for Sarvadip

hi all.. I am going to do mjy final project of degree about [B][U]Social Networking Website[/U][/B].......... So i need some title a catchy one for this online application.. So kindly give me ur kind suggestions and ideas for this project title.. Regardz :)

0
44
Member Avatar for abhiwjt
Member Avatar for apegram
0
53
Member Avatar for unknowndevil41
Member Avatar for unknowndevil41
-1
84
Member Avatar for MaryFan24

Hi, I am trying to develop a website that displays a google map and some markers that I want to add from my SQL Server Database. I have tried to get the values(Latitude and Longitude) from the database in the asp.net and pass them to javascript to add a marker …

0
92
Member Avatar for kanuri1

please help me how to insert data into database by using grid view here iam using asp.net with vb.net database sqlserver-2005 give me any code or suggestions....... pls help me urgent...........................

Member Avatar for Pari13
0
110
Member Avatar for Pari13

any one can help me? i am having problem in using htmlpaser in asp.net

0
49
Member Avatar for beta911

I am doing the school project for ASP.net in Visual Basic and trying to do the updating through gridview but somehow doesn't work at all. Mind to help.....? [CODE]Dim ProductName, SupplierID As String Dim qty, price As Integer REM Dim key As Integer = GridView1.DataKeys.Item(e.RowIndex).Value Dim tb As TextBox tb …

Member Avatar for kvprajapati
0
74
Member Avatar for ashabhatt

[code] SqlConnection con = new SqlConnection(scon); con.Open(); SqlDataAdapter da = new SqlDataAdapter("select Question,Option1,Option2,Option3,Option4 from QuestionData", con); DataSet ds = new DataSet(); da.Fill(ds); foreach (DataColumn dc in ds.Tables[0].Columns) { foreach (DataRow dr in ds.Tables[0].Rows) { Questionlable.Text = dr[0].ToString(); OptionList.Items[0].Text = dr[1].ToString(); OptionList.Items[1].Text = dr[2].ToString(); OptionList.Items[2].Text = dr[3].ToString(); OptionList.Items[3].Text = dr[4].ToString(); } …

Member Avatar for kvprajapati
0
104
Member Avatar for kanuri1

hi iam getting error like "Conversion from string "0/" to type 'Double' is not valid." in the underline part of the coding .......... here iam using sqlserver-2005 here my coding is [CODE] Protected Sub save_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles save.Click Dim conn As New SqlConnection(ConfigurationManager.ConnectionStrings("guest1").ConnectionString()) Dim …

Member Avatar for kvprajapati
0
80
Member Avatar for katzraya

Hi, I have website that works perfect, but sometimes I receive complaints from users(last time this was done often), that when they try to login the get "Internet Explorer cannot display the webpage". Why is it happen?And how can I prevent it? thanks, raya

Member Avatar for catherine sea
0
36
Member Avatar for bluewire2000

Hi, i use simple login with a login page where user place u/n and p/w. The data are compared to store data from access db. If matches, open a secure page. So far so goob. In secure page i wanr to show a gridview with user's data, so he can …

Member Avatar for kb.net
0
103
Member Avatar for ochness

First off I would like to say that I am new to asp.net and programming in general. I have created a website that is being hosted at Network Solutions on a Windows server. My html and aspx pages load fine. On my aspx pages I am using the asp login …

Member Avatar for ochness
0
147
Member Avatar for mittalanuj

Hi, Is there any development tool i can install on my mac for ASP.net? Regards, Anuj

Member Avatar for rg10
0
302
Member Avatar for pdidow

I have an Object, called boot. This boot contains two other objects - a headset and a shellset. Each headset and shellset contains 1 head and 1 shell respectively. My code is not working as expected....I really need some help on this one! Here is the code for my Head/HeadSet …

0
42
Member Avatar for diptibhatore

[code] protected void Button1_Click(object sender, EventArgs e) { SqlConnection con = new SqlConnection(System.Web.Configuration.WebConfigurationManager.ConnectionStrings["shortycaponeConnectionString"].ConnectionString); for (int i = 0; i < GridView1.Rows.Count; i++) { GridViewRow row = GridView1.Rows[i]; CheckBox chkbox = (CheckBox)row.FindControl("cbRows"); TextBox Quantity = (TextBox)row.FindControl("tbx_TextBox"); if (chkbox.Checked == true) { try { con.Open(); SqlCommand cmd = new SqlCommand("INSERT INTO InwardEntries(ProductCode,Size,Quantity,DateTimeNow) …

0
75
Member Avatar for rahmet

how to convert from 'string' to 'System.Data.DataTable' I Have this code and my computer appear kode error I have put all the web site on the attach The best overloaded method match for 'System.Data.OleDb.OleDbDataAdapter.Fill(System.Data.DataTable, object)' has some invalid arguments cannot convert from 'string' to 'System.Data.DataTable' [code] using System; using System.Data; …

Member Avatar for rahmet
0
2K
Member Avatar for yara.008

hi .... i need help to unserstand this code please if someone can help by explain or write commant [CODE] Public Shared Function GetPostBackControl(ByVal thePage As Page) As Control Dim myControl As Control = Nothing ' Dim ctrlName As String = thePage.Request.Params.Get("__EVENTTARGET") If ((ctrlName IsNot Nothing) And (ctrlName <> String.Empty)) …

Member Avatar for yara.008
0
251
Member Avatar for kanuri1

hi i want to show the grid view in another web page when button is clicked,,,,, here iam using sqlserver-2005, here my code is given below [CODE] Protected Sub chkavail_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles chkavail.Click Dim a As String Dim b As Boolean Dim dr As …

0
78
Member Avatar for kanuri1

hi, i had got a problem when iam using to show the crystal reports using an condition it was not working properly ,,,,,, here my code is given below ,,,,,, iam using sqlserver..... [CODE] Protected Sub search_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles search.Click Dim cryRpt As New …

0
53
Member Avatar for love_dude1984

hi.. Im building an application in ASP.net where i have a button which should add more textboxes when clicked. the other textboxes are placed in a table so if i click the button it should a new row containin the textboxes.. please let me know wht code i can use …

Member Avatar for kvprajapati
0
67
Member Avatar for JohnDove

I'm a real newbie to ASP, I'm afraid. I have a windows app that I have written in Visual Basic 2008 using Visual Studio. Could I use ASP.NET to move the app's functionality to be available over the internet? Broadly speaking, the app collects lots of data from the user, …

Member Avatar for kvprajapati
0
80
Member Avatar for mubin_attar

Hi All, Please help me with this. I have a problem and that is I need to connect .net application with already created application but I am not able to do it. Application already created is namely GCSS. How I will connect to this gcss with my .net application, please …

0
50
Member Avatar for tryongliph

Hi, I'm working on a project whereby I have a dropdown control and a formview control. The formview is linked to a datasource and the dropdown is supposed to utilize a stored procedure to update the row that the formview is displaying. Now the problem here is 1- is it …

Member Avatar for tryongliph
0
92
Member Avatar for kylcrow

I made a very simple website using ASP.NET and SQL Server. I will post all the code up if it will help. On my local machine, the website works perfectly. I can preview it from Visual Studio fine, and I set up the IIS on my localhost, and it works …

Member Avatar for yara.008
0
128
Member Avatar for MatthewKeyzer

Can anybody help me here... my application being developed in ASP.NET uses a master page. The master page is set out with a header table, site navigation table, and the content place holders.... when i load certain pages the site navigation table (on the left) will automatically resize to try …

Member Avatar for MatthewKeyzer
0
89
Member Avatar for niro_fernando

[B]I m new to asp.net I made a web page .I design in my laptop, but when i run that web page in desktop the images which i use goes here and there .i used table and master page , but the same thing happen, could u plz tell me …

Member Avatar for niro_fernando
-1
74

The End.