Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~855 People Reached
Favorite Forums
Favorite Tags
Member Avatar for vaisakh

Dim strInsert As String Dim cmdInsert As OdbcCommand Dim cn As OdbcConnection cn = New _ OdbcConnection(ConfigurationSettings.AppSettings("ConnectionString")) strInsert = "Insert into realestate.city_master(city_Name)Values(city_name);" cmdInsert = New OdbcCommand(strInsert, cn) cmdInsert.Parameters.Add("city_Name", city_name.Text) cn.Open() cmdInsert.ExecuteNonQuery() city_name.Text = "" cn.Close()

Member Avatar for campkev
0
74
Member Avatar for vaisakh

any one knows how to place image in datagrid from database in asp.net and i have to provide link to tht image directing to some other page plz help me

0
110
Member Avatar for vaisakh

i have stored image in the database.how can i retrieve it a and display in asp.net webform. am not asking display thru datagrid.i have to put link to those images plz help me to solve this problem

Member Avatar for BlazingWolf
0
149
Member Avatar for vaisakh

i have 3 dropdownlist for month day and year.i need to validate the date selected.means (feb 31, leapyear)i checked javascript but i cannot do it in this .net environment plz help me

Member Avatar for Techscrip
0
70
Member Avatar for vaisakh

i have one javascript function for validating the radiobutton.i have to check it on the button click.but i already have one function there for saving the form.so wht will i do plz help me

Member Avatar for web_developer
0
67
Member Avatar for vaisakh

when i call the session variable on pageload the following error occur System.NullReferenceException: Object reference not set to an instance of an object. the code was Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load religion.SelectedItem.Text = CStr(Session("name")) Session.Remove("name") end sub

Member Avatar for SergioGP
0
92
Member Avatar for vaisakh

hw can i validate the radio button for if it si checked or not can i do this by required field control.if no hw can i do this

Member Avatar for vaisakh
0
77
Member Avatar for vaisakh

i have 3 combos for date day, month ,year i want to conactinate these values and inserted in to one text box plz help me

Member Avatar for web_developer
0
93
Member Avatar for vaisakh

i created a session variable and try to call it on page load on another page the following error occur : System.NullReferenceException: Object reference not set to an instance of an object. code is Session("name")=request(religion_list.selecteditem.text) server.transfer("profile.aspx") // then call religion.selecteditem.Text = CStr(Session("name")) Session.Remove("name") plz help me to solve this

Member Avatar for web_developer
0
123