i've tested my site with sandbox url, it is working fine. Now client wants to create an account. Which type of account he has to create? Developer or Business?
Rockstar_
Posts
-
Regarding Paypal integration -
Regarding Paypal integrationHi Friends, I'm new to paypal, one of my application is integrated with paypal(testing site ie, sandbox). I need to use the actual live URL in the application with new live account. For creating new account: Do i need to create directly business account or developer account and then business account?
-
Developed an ASP .NET site, need to make it to work on Mobile deviceHi All, I have developed an application it is working fine in desktop/laptops systems. Now we need to make it to work in Mobile devices. I know little bit of Jquery core. I created a sample page using Jquery Mobile plugin and it is changing the size/width of the page automatically. But when I browse the same page in desktop browser it is not looking good. Means the page width is increased blob blob..... I want to make the existing site to work in Mobile devices? How can i do that.? I googled but not got proper solution to my problem.
-
ADO.NET -
open input dialog from gridview cancel btndelLnk.OnClientClick = "return confirm('Are you sure you want to cancel this booking?');";
if(
confirm('Are you sure you want to cancel this booking?')
) { // if true } else { //if false; // you can prompt the user to enter the reason here. with the javacript's prompt() dialog box. }
-
What is the meaning of the bwlow line code?<asp:ScriptManager ID="ScriptManager1" runat="server">
<Services>
<asp:ServiceReference Path="AutoComplete.asmx" />
</Services>
</asp:ScriptManager> -
What is decimal data type in sql server?Hi, I have a column of type decimal(18,0)? What it can store?
-
What is the difference between DBContext class and ObjectContext ?Hi Everyone, What is the difference between DBContext class and ObjectContext ?
-
parallel programmingWhat u want to do actually?
-
parallel programmingCan u plz describe ur problem? Not understood.... What is Parallel processing?
-
Passing data to another page without receive frm databaseyes, Nice...
-
Email Receiving and Sending complete code in asp.net using C#HI this only sending.. using System; using System.Web.Mail; using System.Data; using System.Configuration; using System.Data.SqlClient; namespace Utility { public class Email { public string sendTo = string.Empty; public string sendFrom = string.Empty; public string sendSubject = string.Empty; public string onlineResLibUserName = string.Empty; public string onlineResLibPassword = string.Empty; public string sendBody = string.Empty; public string MessageTemplate = string.Empty; public string sendCC = string.Empty; public string sendBCC = string.Empty; public void SendMail(string mailFor) { Displathmail(); } private void dispatchMail() { MailMessage mailMessage = null; try { mailMessage = new MailMessage(); mailMessage.BodyFormat = MailFormat.Html; mailMessage.Subject = "Local:" +sendSubject; mailMessage.From = sendFrom; mailMessage.Body = sendBody; //mailMessage.To = sendTo; mailMessage.To = "opmbugs@gmail.com"; SmtpMail.SmtpServer = "localhost"; SmtpMail.Send(mailMessage); } catch (Exception err) { throw err; } } } }
-
i want code to remove submenuYou can create two Menu controls one for public users and the another for admin. and based on login enable and disable the menu controls.
-
Loading Very Large DataSet Without losing any informationyes, this may solve your problem....
-
the select controlI agree...
-
three div side by sideit is best to place in table,
Then give height, width etc....
-
CSS radioButton listYes, I agree... I think we can do this using JQuery very easy and fast....
-
AJAX Image LoadingWhen the page is taking time for loading , I kept an update panel and a image for displaying the progress and im manually giving the time to show the progress image, I need a dynamic solution , so that when the data is loaded successfully automatically the loading image should close and has to show the data and if it is taking too much time than whatever i have specified then the image has to show until the data is loaded?
-
Hi Friends i want to create a web applicationHi , I am not clear with the question dear, and the link provided is displaying session expired. what you wanted to do? can you please elaborate...
-
Dialog auto-resizeYou can put the form in the div tag and set the horizontalscrollbar to true and verticalscrollbar to none.