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
~2K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums

7 Posted Topics

Member Avatar for Moss ali

Hi Dudes i need a javascript code for code behind using c#.When user click on delete button the popup dialog open Do you really want to delete Yes/No on Yes i want to put my Delete Method there.Pls help me.Thanks in advance.

Member Avatar for nakor77
0
229
Member Avatar for maitri123

Hi First Crate a Data Acess Layer and craete a method there for Storeprocedur. [CODE] public static DataSet SelectSupplierContactsBySupg_id(string supg_id) { using (SqlConnection con_contacts = ConnectionManager.GetConnection()) { using (SqlDataAdapter ada_contacts = new SqlDataAdapter("sprocFilteringSupplierContactsBySupg_id", con_contacts)) { ada_contacts.SelectCommand.CommandType = CommandType.StoredProcedure; ada_contacts.SelectCommand.Parameters.AddWithValue("@supg_id", supg_id); DataSet ds_Contacts = new DataSet(); try { ada_contacts.Fill(ds_Contacts, "SupplierGroupContacts"); return …

Member Avatar for Moss ali
0
888
Member Avatar for Moss ali

[code]if (row.Cells[2].Text.ToString() == " ") { txtstreet.Text = string.Empty; } [/code] Help me out pls. I want to check row.cell[2].Text for null

Member Avatar for Moss ali
0
159
Member Avatar for Moss ali

Hi how i check for null in gridview. GridViewRow row = gv_supg.Rows[e.NewSelectedIndex]; ddlstate.SelectedValue = row.Cells[9].Text; ddlCountry.SelectedValue = row.Cells[10].Text; how i can check for null for ddlstate value.Beacouse when there is null in DB the next attribute values does not assign to dropdownlist which is ddlCountry and 5 more attributes. Pls …

Member Avatar for jbisono
0
81
Member Avatar for Moss ali

I have 3 tables in my Db Supplier with started Supplier-id=C001 up to C999,Each supplier have many Contacts.On some condition i want to assign one table values to second table only those values which are related to that condition let suppose Supplier S010 marge his Business With Supplier S090 then …

0
75
Member Avatar for Moss ali

i want to select MAX Id where i have the list database s001.1 s001.2 s001.3 s001.4 s002.1 s002.2 s002.3 s002.4 upto so On my field type is char(7) MSQL SELECT MAX(sup_id) where data type is char(7) plz help me out to perform this query in SQL.

Member Avatar for tjaank
0
170
Member Avatar for Moss ali

i am working in a form where i have used some javascript alert Popups before using <asp:updatepanel /> the java script was working fine but when i applied the updatepanel the java script popups are not working plz help me out.

Member Avatar for hericles
0
102

The End.