hi gaurav Let us suppose, Application name is MyApplication and page name is Home.aspx When u run the application u will get some path like http://localhost/MyApplication/Home.aspx put your system name(ex:sys130) instead of localhost, then u can acces the application in any system with in lan connection. change like http://sys130/MyApplication/Home.aspx
Sql Exciter
Posts
-
carry a form from one computer to other computer -
How to create paragraphs in text editorHi all I am working on web text editor. When i entered text in textbox(text editor), can i divide 20 lines in to one paragraph. My aim is to save the text as paragraphs in database, when i submit. ex: like id, par1, par2....par10 Thanks & Regards satish
-
Re:Creating dyanmic form tag i.e. at run timeHi to all, I have one class. That i have to convert to Custom control. Just I took one webcontrol library .For that i have to create form tag at runtime.How to write javascript for that. The following is my class. Check the PayNow() and answer me.
public string PayNow() { //construct script for paypal submission //construct a form with all hidden variables and say form.submit() string modify = string.Empty; if (CanUserModifySubscription) modify = "1"; else modify = "0"; StringBuilder paypalJavascript = new StringBuilder(); if (SubmitPaypal) { paypalJavascript.Append(" if (EnableSandboxMode) paypalJavascript.Append(SandboxUrl); else paypalJavascript.Append(PaypalUrl); paypalJavascript.AppendLine(">"); paypalJavascript.AppendFormat("{2}", "cmd", Command, Environment.NewLine); if (EnableSandboxMode) paypalJavascript.AppendFormat("{2}", "business", SandboxBusinessEmail, Environment.NewLine); else paypalJavascript.AppendFormat("{2}", "business", BusinessEmail, Environment.NewLine); paypalJavascript.AppendFormat("{2}", "item\_name", SubscriptionItemName, Environment.NewLine); paypalJavascript.AppendFormat("{2}", "item\_number", SubscriptionItemNumber, Environment.NewLine); paypalJavascript.AppendFormat("{2}", "no\_shipping", "1", Environment.NewLine); paypalJavascript.AppendFormat("{2}", "return", SuccessUrl, Environment.NewLine); paypalJavascript.AppendFormat("{2}", "cancel\_return", CancelUrl, Environment.NewLine); if (TrialSubscriptionPeriod != 0) { paypalJavascript.AppendFormat("{2}", "a1", TrialSubscriptionAmount.ToString("0.00"), Environment.
-
Calling webservices asynchronously using java scriptHi lam satish, Iam calling a web service which contains addition,subtraction, multiplication,division methods. so these things, i have to call asynchronously using java script, with out post to the server.so give me reply as early as possible. Thanks & Regards satish.