You can maintain multiple session to manage it. you can create your own session as well. Regards Keyur Satyadev
keyur satyadev
Posts
-
Session State using database for ASP.NET and WCF -
Extract Comment from Project/WebsiteYes if required, developer will load source code. but just to make sure code doesn't get affected and will get comments from source code. Thanks Regards Keyur Satyadev
-
Extract Comment from Project/WebsiteYes Please, Comment will be standard comment which we are using with summary. i.e. /// /// These comments are required to extract from c# source code file to either in XLS/Word/XML or any type of file. Let me know still if you have any questions with regards to post. Regards Keyur Satyadev
-
Extract Comment from Project/WebsiteHi all, Hope you are doing good!! I would like to extract the comment written by developer in xls/xml/text file or in any other type. so basically, extract any type of comment written by developer in c# page, would like to extract. Thanks Regards Keyur Satyadev
-
Android Orientation with VideoWhich Device you are using? Its working fine with my HTC but having issue with Samsung. Regards Keyur Satyadev
-
Android Orientation with VideoHi All, I am just developing one Android app, in which we have to capture the video. Now user will capture the video in portrait view but while it will play, it will automatically play in landscape. i.e. video is capture in portrait view, though it will play in landscape view. when i will check in memory card, video is still captured in portrait view and also while playing video from memory card, it will play in portrait view. I have checked, manifest file and seems all files are fine. Please let me know if any one have any idea. Regards Keyur Satyadev
-
PayPal Integration with IPhone Native ApplicationHi All, Hope you are doing good!! We have one requirement , i.e. Integrate PayPal with application for payment process. Say for example, If user register and want to purchase one package with 49$ then we have to accept the payment via PayPal, I would like to if this is possible and also would like to know that apple is approve the application with PayPal Integration. Looking forward to hear back from all of you. Thanks,
Regards Keyur Satyadev
-
ASP.Net Logout issueWell, you can just check on page load that if user is logged in then display the page. Otherwise redirect to login page or display alert message that please login. There is no requirement of Response.Expires = 0 Response.Cache.SetNoStore() Response.AppendHeader("Pragma", "no-cache") Let me know if you have any doubts. thank you.
Regards Keyur Satyadev
-
UploadingWell, it's depend on bandwidth of server and speed. but you can try below code in web.config file, i hope which will resolve your problem. it's work for me more than 50 MB file. this should be before completion of system.web section. Regards Keyur Satyadev
-
Server Error in '/book' Application.Hi All We are facing the issue with my website. we have uploaded the publish version and facing the below error. Could not load the assembly 'App_Web_ixo69rir'. Make sure that it is compiled before accessing the page. URL :: http://www.dobazaar.com/book/architecture.aspx
Regards Keyur Satyadev
-
asp.net 2010 debuggingfor java script you can use the debugger keyword. i.e. debugger: for CSS and HTML you can check with number of add on from IE and FF (Mozilla). they are very help full to check the CSS and HTML of your page. if you don't know about add on, just search in google. you will get everything.
Regards Keyur Satyadev
-
ASP & JavaScriptI agree that server side validation is safe. still if you wish to proceed then please find below example to validate textbox. var txtValue = document.getElementById(<"%txt1.ClientID%">).value; if(txtValue==null || txtValue='') { alert('Please enter value in textbox.'); //message should be depends on requirement. return false; } Let me know still if you have any doubts.
Regards Keyur Satyadev
-
allow user to manage pop3 account in our website ? [modified]hi all, we need to integrate email client in our asp.net web application. in which user can manage POP3 account from our web application. i go through Google but yet not getting the exact idea that how to implement the same. let me know if anyone have any idea or suggestion or details that how to allow user to create his POP3 email account. also if he specify yahoo email or gmail email then that mail also should be shown at our website. let me know if anyone have any idea....
Regards Keyur Satyadev
modified on Monday, March 29, 2010 2:47 AM
-
problem in tranfer the value of one gridView cell into another gridview textboxdo one thing, when you fire the itemcommand on first gridview at that time take that textbox value in some field (such as if many fields then use the datatable ) and give that datatable to the second grid. i.e. grd2.datasource = dt; grd2.databind() protected void grd1_ItemCommand(object sender, GridCommandEventsArgs e) { if(e.commandname == "settextboxvalue") { string txt1value; txt1value = (TextBox)grd1.FindControl("txt1").Text; } } in this way you get the value of textbox of first grid now you can assign this to the second.
Regards Keyur Satyadev
-
problem in tranfer the value of one gridView cell into another gridview textboxhave you a link or button to transfer the data of one grid cell value to other?
Regards Keyur Satyadev
-
Dynamic Meta Keywordsi am not gettting your meaning of upload metakeyword dynamically but it is beneficial as you generate dynamically as per product. you can add this into your database and get from thier (individual for each product). it will help to for SEO.
Regards Keyur Satyadev
-
SQL Queryselect * from FirstDatabase.dbo.Table1 t1 join SecondDatabase.dbo.Table2 t2 on t1.id=t2.id where (your condition if any)
Regards Keyur Satyadev
-
How to refresh only Content page without refreshing master pageyou can use the update panel with conditional mode. it is better way as user fill that the entire page is not refresh. put the update panel in both master page and all content page and set the mode conditional. now when you want to update any panel just write updatepanel1.update() method. this is easiest way to achieve as per me. hope this will help you.
Regards Keyur Satyadev
-
How to get Confirmation message when i sent pdf as mail in asp.netdo one thing see the code and match your code (code is in C# syntax). //code public static bool SendMail(string FromEmail, string FromName, string ToEmails, string MailBody, string Subject, string CcEmails, string BccEmails, bool IsBodyHtml) { try { System.Net.Mail.MailMessage objMail = new System.Net.Mail.MailMessage(); //Mail From Field if (!String.IsNullOrEmpty(FromName)) { objMail.From = new MailAddress(FromEmail, FromName); } else { objMail.From = new MailAddress(FromEmail); } //Mail To Field if (!String.IsNullOrEmpty(ToEmails)) { objMail.To.Add(ToEmails); } //Mail Cc Field if (!String.IsNullOrEmpty(CcEmails)) { objMail.CC.Add(CcEmails); } //Mail Bcc Field if (!String.IsNullOrEmpty(BccEmails)) { objMail.Bcc.Add(BccEmails); } //Mail Subject Field objMail.Subject = Subject; //Mail Body Field objMail.Body = MailBody; objMail.IsBodyHtml = IsBodyHtml; try { SmtpClient smtp1 = new SmtpClient(); smtp1.Send(objMail); return true; } catch (Exception ex) { //HttpContext.Current.Response.Write(ex.Message.ToString()); return false; } } catch (Exception ex) { string mess = ex.Message.ToString(); return false; } } // now in your code if its return true then fire your script. it will show the message as if your script is without error.
Regards Keyur Satyadev
-
drag n drop selected row of one grid to another grid thru button in javascript?have you include the JS mention at below page. check it and reffer the same. http://www.extjs.com/learn/Tutorial:Introduction\_to\_Ext\_2.0 download JS from their and referred the URL for how to implement it. sorry as i haven't read your previous reply.
Regards Keyur Satyadev