I need to show below content on tooltip.Is it possible ? Why do I need to confirm my contact details? Arena Animation offers free Career Counselling by telephone. For this, we need to make sure that the person we have reached is the right one. Ever been annoyed by a pesky tele-caller? Someone who calls you at random times of the day & night? Yes, we know exactly how that feels. Arena Animation respects your privacy. Our Counsellors ensure that they call you only with your permission. For this, we want you to confirm that the details you enter are correct & that there are no mistakes. How do I confirm? Simple! Just check your SMS/ email! The moment you enter your phone number & email ID, Arena sends you a special code via SMS & email. Once you enter this code on our page, we know that this is your number & your email address - for real! Only after this confirmation do our Counsellors get a go-ahead to contact you. So, to receive free Career Counselling from Arena, simply enter your correct number & email address on this form!
lrsalunkhe
Posts
-
Formated tooltip -
Access Master Page Control Value in Child pageRespected I do not access the master page control value in its child page my code is : string str = ((Label)Page.Master.FindControl("Lable1")).Text; please help Thanks And Regards lalit
-
Import Excel SheetThis is my connection string for ExcelSheet : string excelConnectionString = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + fldSubscriberList.PostedFile.FileName + ";Extended Properties=Excel 8.0"; But Given the Error AS : Could not find installable ISAM Please Help Thanks
-
Import ExelSheetData into SqlServer2005 TableRespected How we Import ExcelSheetData into SqlServer2005 Table,by using Asp.net with C# . Thanks.
-
Browser compability ProblemRespected Sir, On IE My web site run with alignment.But on Chrome it not run with good manner and alignment will be change. please help me Thanks And regards lalit
-
Send online SMS [modified]respected I am creating sms application when it is LocalHost SMS send successfully but when it online we do not send SMS My code is : public string mobile(string strcontactno, string strmesg) { try { myPage.Text = readHtmlPage(strcontactno, strmesg, "?"); return myPage.Text; } catch (Exception ex) { return myPage.Text; } } public string readHtmlPage(string strcontactno, string strmesg, string url) { string result = null; string strPost = null; string contactno = strcontactno; string message = strmesg; try { strPost = "&msisdn=" + strcontactno + "&msg=" + strmesg + "&sid=TEST&mt=0"; HttpWebRequest objRequest = (HttpWebRequest)WebRequest.Create(url); objRequest.Method = "POST"; objRequest.ContentLength = strPost.Length; objRequest.ContentType = "application/x-www-form-urlencoded"; myWriter = new StreamWriter(objRequest.GetRequestStream()); myWriter.Write(strPost); } catch (Exception e) { return e.Message; result = "-200"; } finally { if (myWriter != null) { myWriter.Close(); } } return result; } Thanks
modified on Monday, April 26, 2010 3:31 AM
-
Create Sheduling For Send SMSRespected, How to Create Sheduling For Send SMS in asp.net Please help . Thanks And Regards, Lalit
-
Sheduling for send MailRespected, i want one requirement we maintain the web site,so every 1 month my company newsletter will be send to the mailID's automatically ,requirement is one textbox and one button ,when u subbmit u r mailid the newsletter will send that time and every 1 month this is my requirement plse any body helpme sample application Thanks,
-
How we send multiple smsRespected, How we send multiple sms in asp.net with c#. I have use API for this. Thanks in Advance;
-
how we print HTML page with Default printer selectionRespected, But sir I have print directly without showing the print preview page and printer selection Dialog Box. Thanks for replay
-
how we print HTML page with Default printer selectionRespected, Thanks for solving my previous problem. Now how me print the HTML page with Default printer. It ignore the printer setting popup dialog box. Thanks.
-
open window not work properlyThanks allot....
-
open window not work properlyRespected, Below is my code : If Session("DataTableForPrint") IsNot Nothing Then Dim st As String = "<script language='javascript'>" & _ "window.open(Report_fees_Collection.aspx)" & _ "</script>" Page.ClientScript.RegisterStartupScript(Me.GetType(), "MyScript", st, True) It not work please help me . thanks
-
GridView not Display Name [modified]Thanks For replay
-
GridView not Display Name [modified]Respected, Sir, My GridView do not display name in template field my code as your reference is : Text='<%# GetClassName(DataBinder.Eval(Container.DataItem,"CLASSID")) %>' I am calling a function for name by passing ID and display in template field class but it can not work. please help me. Thanks.
modified on Tuesday, January 26, 2010 5:31 AM
-
Get Control Value From GridViewRespected, I have taken DropDownList and checkBox control in a Grid problem is when dropDown select of specific GridView row the CheckBox on the GridView selected row should be unCheck Please help me. Thanks
-
Convert into the Indian Rs formateRespected, How to convert Integer value into Indian Rupees Formate in VB.Net E.g 1234567 convert into 12,34,567 Thanks
-
Image not displayThanks
-
Image not displayRespected, Hi sir ,I am save the image on server folder when I retrieve image for display from server folder it not be display my code is as follow : Dim photo As String = "JC001924.jpg" Dim strimage As String = "~/SchoolFeeCollection_lalit1/Photos/JC001924.jpg" '"~/Photos/" & photo Image1.ImageUrl = Server.MapPath(strimage)
-
Split string problemThe code is : grno = "JC00234" Dim splitgrno As Int32 = CType(grno.Substring(2), Int32)