Dears Any body help me about master page. i build 2 pages with command master page. and master page have 2 links for 2 pages. Normaly when i click on master page first link then open first page and when i click on master page second link then open second page. In this process whole page refress. I need when i click on master page link then refress only contact page not a master page.
Bhim Prakash Singh
Posts
-
Show contact page without refreshing master page -
XML ManipulationDataSet ds = new DataSet(); ds.ReadXml(Server.MapPath("XML\\modules.xml")); foreach (DataRow dr in ds.Tables[0].Rows) { btn.Text = dr["Display"].ToString(); } try to use this code
-
report viewer cann't run on interneti have developed a web application, but i facing problem in reportviewer. recportviewer cann't run on internet plz help me
-
Adobe Acrobat PDF link cann't work on windows formI am using C# and have created a regular Windows form. I have used COM and registered AxAcroPDFLib.AxAcroPDF. Here is my code; axAcroPDF1.LoadFile("myfile.pdf") axAcroPDF1.Show(); MessageBox.Show("Showing..."); This works fine. But, just like the browser, but PDF file links can't work. I have the full version of Adobe Acrobat installed, Standard 8.0. I also have the Pro. version 7.1.0 on another PC. When I click on link ,Its can't open link URL. Thank you for any help. please.
-
adobe acrobat pdf link cann't work on windows formI am using C# and have created a regular Windows form. I have used COM and registered AxAcroPDFLib.AxAcroPDF. Here is my code; axAcroPDF1.LoadFile("myfile.pdf") axAcroPDF1.Show(); MessageBox.Show("Showing..."); This works fine. But, just like the browser, but PDF file links can't work. I have the full version of Adobe Acrobat installed, Standard 8.0. I also have the Pro. version 7.1.0 on another PC. When I click on link ,Its can't open link URL. Thank you for any help. please.
-
how to remote desktop connection closei have face a problem about remote desktop connection. i need close remote desktop connection using code. how it possible
-
hard disk serial nodear i have solution in C# plz tell me
-
Problem - How to get HDD Serial Number in Windows Vistahi try this link get Physical HDD serial number without WMI[^]
-
hard disk serial nohi this code work on normal hard disk. but on sata hard disk this code does not work.
-
hard disk serial nohi friends i want to retrive hard disk serial no. i use this code Dim strMotherBoardID As String = String.Empty Dim query As New SelectQuery("Win32_BaseBoard") Dim search As New ManagementObjectSearcher(query) Dim info As ManagementObject For Each info In search.Get() strMotherBoardID = info("SerialNumber").ToString() Next Return strMotherBoardID but this code does not work properly. this error show Object reference not set to an instance of an object.
-
Ajaxi am developing a web app and i wud like to use AJAX . I am receving one other page and dispaly on my page but other page events does not work here. Plz help.
-
VB 6 .0 setup merage crystal report 8.0i have faced problem in crystal report.
-
run time event createi have face a problem for creating run time event. i have a button on page. when i have click on button , i create another button in page in run time. i want , when i click on new button so display an message on screen. i hope , my friends , you have a solution
-
GridView problemhi friend this is wrong method. you want to retrive data from GridView. first you select row. then select column.
-
Datatable error in asp.net... help me!try this code. sqlDataAdapter da = =new sqlDataAdapter("Select col from tbl_test',conn); Dataset ds = new DataSet; da.fill(ds,"tab"); DataTable dt = new DataTable(); dt = ds.table(0); DataRow dr = DataRow(); for each dr in dt.rows Messagebox.show(dr.row[o].ToString()); next
-
how to create web partshi i want to create to web parts for my web base project. any body help me i used C#
-
SMS Sending Problemi used this code, but not received any SMS Pealse any body solve my problem using System; using System.Collections; using System.ComponentModel; using System.Data; using System.Drawing; using System.Web; using System.Web.SessionState; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.HtmlControls; namespace SmsTest { /// <summary> /// Summary description for WebForm1. /// </summary> public partial class WebForm1 : System.Web.UI.Page { protected void Page_Load(object sender, System.EventArgs e) { txtCountryCode.Enabled = false; } #region Web Form Designer generated code override protected void OnInit(EventArgs e) { // // CODEGEN: This call is required by the ASP.NET Web Form Designer. // InitializeComponent(); base.OnInit(e); } /// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { } #endregion protected void Send_Click(object sender, System.EventArgs e) { try { SmsTest.net.webservicex.www.SendSMS smsIndia= new SmsTest.net.webservicex.www.SendSMS(); SmsTest.com.webservicex.www.SendSMSWorld smsWorld = new SmsTest.com.webservicex.www.SendSMSWorld(); if(rdoType.SelectedValue == "1") smsIndia.SendSMSToIndia(txtMobileNo.Text.Trim(), txtEmailId.Text.Trim(), txtMessage.Text); else smsWorld.sendSMS(txtEmailId.Text.Trim(), txtCountryCode.Text.Trim(), txtMobileNo.Text.Trim(), txtMessage.Text); lblMessage.Visible = true; lblMessage.Text="Message Send Succesfully"; } catch(Exception ex) { lblMessage.Visible = true; lblMessage.Text="Error in Sending message"+ex.ToString(); } } protected void rdoType_SelectedIndexChanged(object sender, System.EventArgs e) { if(rdoType.SelectedValue =="1") txtCountryCode.Enabled = false; else txtCountryCode.Enabled = false; } } }
-
VBA.Calendar = vbCalHijrii want to use this code in asp VBA.Calendar = vbCalHijri date
-
crystal report problemi want to create crystal report in run time, means through C# hard code
-
run time event createthank this code button load in page_load but i have a button. then click on button i want to create a new button and then i click on new button than show message "Hi";