Blog
Android and kindle fire
|
A for android is the wrod that is used more than 'a' for apple these days.
Talking about small portable system's it's high time,attraction of the end user is more on technology that is fast,compatible safer and easy while go.
For me,for you or any other person ANDROID is an open source linux operating system.
Not only mobile phonesthe future is tablet,even tablet pc leaving a laptop tech behind.
This scenario guides us to need of market and even customers,hence its high time.
Kindle fire-It is the another form of OS especially designed for tablets owned by amazon.
These OS are open source so the competion is big and the demand is high.'
Thus i am working on the project of these OS,and i assure that the outcome with new ideas and innovation will be great success
-SHASHANK SINGH:)
Categories: None
Post a Comment
Oops!
The words you entered did not match the given text. Please try again.
46 Comments

using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using mvc_test_shashank.Models;
using System.Web.UI.WebControls;
using System.Web.UI;
using System.Text;
namespace mvc_test_shashank.Controllers
{
public class sampleController : Controller
{
public class InsertError
{
public string ErrorMessage { get; set; }
public string OriginalName { get; set; }
public string OriginalCode { get; set; }
}
public ActionResult Index()
{
return View("Index");
}
[HttpPost]
public ViewResult DisplayCustomer()
{
if (String.IsNullOrEmpty(Request.Form["Code"]) || !CheckForSplChar(Request.Form["Code"]) )
{
InsertError error = new InsertError();
error.ErrorMessage = "Enter valid Code";
ViewData["ErrorMessage"] = error.ErrorMessage;
error.OriginalName = Request.Form["Name"];
error.OriginalCode = Request.Form["Code"];
TempData["error"] = error;
return View("Index");
}
if (String.IsNullOrEmpty(Request.Form["Name"]) || !CheckForSplChar(Request.Form["Name"]))
{
InsertError error = new InsertError();
error.ErrorMessage = "Enter valid Name";
ViewData["ErrorMessage"] = error.ErrorMessage;
error.OriginalName = Request.Form["Name"];
error.OriginalCode = Request.Form["Code"];
TempData["error"] = error;
return View("Index");
}
if (String.IsNullOrEmpty(Request.Form["Amount"]) || !CheckForSplChar(Request.Form["Amount"]))
{
InsertError error = new InsertError();
error.ErrorMessage = "Enter valid Amount";
ViewData["ErrorMessage"] = error.ErrorMessage;
error.OriginalName = Request.Form["Name"];
error.OriginalCode = Request.Form["Code"];
TempData["error"] = error;
return View("Index");
}
Customer objCustomer = new Customer();
objCustomer.Code =Convert.ToInt32( Request.Form["Code"]);
objCustomer.Name = Request.Form["Name"];
objCustomer.Amount = Convert.ToInt16(Request.Form["Amount"]);
return View("DisplayCustomer", objCustomer);
}
public bool CheckForSplChar(string strtoCheck)
{
bool bValidChar = true;
char[] illegalChars = "-~`+|][.,'!#[email protected]$%^*(){}\"+?/:=".ToCharArray();
System.Text.StringBuilder sb = new System.Text.StringBuilder();
foreach (char ch in strtoCheck)
{
if (!(Array.IndexOf(illegalChars, ch) == -1))
{
bValidChar = false;
return bValidChar;
}
else
{
bValidChar = true;
}
}
return bValidChar;
}
}
}

using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
using System.Data.SqlClient;
using CMOGDAL;
using Microsoft.ApplicationBlocks.Data;
using CMOGEntity;
namespace CMOGDAL
{
public class UploadDocumetsDAL
{
public DataSet fillddlUploadType()
{
DataSet s_fillddlUploadType = new DataSet();
s_fillddlUploadType = null;
SqlConnection conn = new SqlConnection(Connection.CMOGConStr);
try
{
s_fillddlUploadType = SqlHelper.ExecuteDataset(conn, CommandType.StoredProcedure, "USP_GET_UPLOADTYPE");
return s_fillddlUploadType;
}
catch (Exception ex)
{
throw ex;
}
}
public DataSet fillddluploadMenu(string ddluploadtype_value)
{
DataSet s_dsDetail = new DataSet();
s_dsDetail = null;
SqlConnection conn = new SqlConnection(Connection.CMOGConStr);
try
{
SqlParameter[] AddParam = new SqlParameter[1];
AddParam[0] = new SqlParameter("@STRUPLOADTYPE", SqlDbType.VarChar, 15);
AddParam[0].Value = ddluploadtype_value;
s_dsDetail = SqlHelper.ExecuteDataset(conn, CommandType.StoredProcedure, "USP_GET_MENUNAME", AddParam);
return s_dsDetail;
}
catch (Exception ex)
{
throw ex;
}
finally
{
s_dsDetail.Dispose();
}
}
public string adduploaddetails(UploadDocuments objuploaddocumentsEntity)
{
SqlConnection con = new SqlConnection(Connection.CMOGConStr);
try
{
string strMessage;
string spName;
spName = "USP_UPLOAD_DOCUMENT";
con.Open();
SqlCommand cmd = new SqlCommand(spName, con);
cmd.CommandType = CommandType.StoredProcedure;
SqlParameter[] AddParam = new SqlParameter[7];
AddParam[0] = new SqlParameter("@STRUPLOADID", SqlDbType.Int);
AddParam[1] = new SqlParameter("@STRUPLOADEDBY", SqlDbType.VarChar, 30);
AddParam[2] = new SqlParameter("@STRUPLOADTYPE", SqlDbType.VarChar, 15);
AddParam[3] = new SqlParameter("@STRUPLOADNAME", SqlDbType.VarChar, 50);
AddParam[4] = new SqlParameter("@STRLINKPATHNAME", SqlDbType.VarChar, 1000);
AddParam[5] = new SqlParameter("@STRLINKPATH", SqlDbType.VarChar, 1000);
AddParam[6] = new SqlParameter("@STROUTMESSAGE", SqlDbType.VarChar, 100);
AddParam[0].Value = Int32.Parse(objuploaddocumentsEntity.srno.ToString());
AddParam[1].Value = objuploaddocumentsEntity.uploadedby.ToString();
AddParam[2].Value = objuploaddocumentsEntity.uploadtype.ToString();
AddParam[3].Value = objuploaddocumentsEntity.uploadmenu.ToString();
AddParam[4].Value = objuploaddocumentsEntity.linkpathname.ToString();
AddParam[5].Value = objuploaddocumentsEntity.linkpath.ToString();
AddParam[6].Direction = ParameterDirection.Output;
IDataAccess.SqlHelper.ExecuteNonQuery(con, CommandType.StoredProcedure, spName, AddParam);
strMessage = AddParam[6].Value.ToString();
return strMessage;
}
catch (Exception ex)
{
throw ex;
}
finally
{
con.Close();
}
}
}
}

@model Mvc_TEST_using_razor.Models.DropdownListModel
@{
Layout = null;
}
Index
@using (Html.BeginForm())
{
@Html.ValidationSummary()
Select an Item : @Html.DropDownList("List", new SelectList(Model.Items),"--Choose any Item--")
var ViewDataTest = (ViewData["strname"] as Mvc_TEST_using_razor.Models.DropdownListModel).str_name;
}
'
$(document).ready(function () {
$("#List").change(function () {
var str = "";
$("select option:selected").each(function () {
if ($(this).text() != "--Choose any Item--") {
str += $(this).text() + " ";
}
});
$("#str_values").val(str);
});
});

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data;
using mvc_test_shashank.Models;
using System.Data.SqlClient;
using IDataAccess;
namespace mvc_test_shashank.Models
{
public class MVCTEST_DAL
{
public DataTable fill_gridshowdetails()
{
DataTable s_dsDetail = new DataTable();
s_dsDetail = null;
SqlConnection conn = new SqlConnection(Connection.ConStr);
try
{
DataSet dsRole = IDataAccess.SqlHelper.ExecuteDataset(conn, CommandType.StoredProcedure, "mvc_test_proc_show");
return dsRole.Tables[0];
}
catch (Exception ex)
{
throw ex;
}
}
public DataTable fill_ddl()
{
DataTable s_dsDetail = new DataTable();
s_dsDetail = null;
SqlConnection conn = new SqlConnection(Connection.ConStr);
try
{
DataSet dsRole = IDataAccess.SqlHelper.ExecuteDataset(conn, CommandType.StoredProcedure, "mvc_test_proc_show");
return dsRole.Tables[0];
}
catch (Exception ex)
{
throw ex;
}
}
}
}

using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.ComponentModel.DataAnnotations;
using System.Web.Mvc;
using mvc_test_shashank.Models;
using System.Data;
namespace Mvc_TEST_using_razor.Models
{
public class Role
{
public string RoleCode { get; set; }
public string Value { get; set; }
}
public class DropdownListModel
{
public IEnumerable Roles { get; set; }
public SelectList RoleSelectList { get; set; }
public Role Role { get; set; }
public string str_name { get; set;}
[Required(ErrorMessage = "Selection is a MUST")]
public string SelectedItem { get; set; }
private List _items;
public List Items
{
get
{
_items = new List();
MVCTEST_DAL objdal = new MVCTEST_DAL();
DataTable dtRole = objdal.fill_ddl();
dtRole = objdal.fill_gridshowdetails();
int count = dtRole.Rows.Count;
//count--;
for (int temp = 0; temp _items2;
public List Items2
{
get
{
_items2 = new List();
MVCTEST_DAL objdal = new MVCTEST_DAL();
DataTable dtRole = objdal.fill_ddl();
dtRole = objdal.fill_gridshowdetails();
int count = dtRole.Rows.Count;
for (int temp = 0; temp

https://service-essay.com/
writing an essay for college
thesis paper writing
will someone write my essay for me
dissertation help
how to write reflective essay
undergraduate coursework
college transfer essays
write my essays
how to write a good essay fast
writing services
essay helper
cheap essay writing service
how to write a conclusion for an essay
https://contest101.webs.com/apps/guestbook/

https://topessayservicescloud.com/
essay scholarships for college students
online coursework
essays to write about
paper helper
paid essay writers
thesis writing service uk
english essay writing service
courses work
cheap essay writer service
cheap essay writing services
what to write an argumentative essay on
writing service
how to write an essay about your self
https://kehillathisrael.webs.com/apps/guestbook/

https://homeworkcourseworkhelps.com/
essay writing service cheap
define dissertation
write my essay today
help writing thesis statement
college essay writing services
thesis paper writing
autobiographical essay for college
resume writing services
essay about myself for college
doctoral dissertation
how to write a personal essay
xyz homework
essay writing companies
https://smilevault1.webs.com/apps/blog/show/48256738-comprar-bitc
oins-con-tarjeta-de-cr

https://essayssolution.com/
best college application essay
online coursework
how to write a five paragraph essay
writing papers
essay scholarships for college students
writing dissertations
college entry essay
how to write an argumentative essay
what to write in a college essay
writing paper
money can t buy everything essay
help thesis writing
common application college essay
https://kehillathisrael.webs.com/apps/guestbook/

https://quality-essays.com/
writing short essays
dissertations
how to write a great essay
writing a thesis statement
paid essay writers
dissertations online
how to write admission essay
phd thesis help
higher english critical essay help
thesis statement maker
best writing services reviews
define dissertation
college athletes should be paid essay
https://smilevault1.webs.com/apps/blog/show/48256738-comprar-bitc
oins-con-tarjeta-de-cr

https://dissertationwritingtops.com/
persuasive essay writer
essay writing services
write my essay review
writing dissertations
analytical essay writing
homework hotline
reflection essay on writing
dissertations online
essay writing services review
writing paper
writing a thesis statement for an essay
thesis paper
analysis essay help
https://kehillathisrael.webs.com/apps/guestbook/

canadian mail order pharmacies
https://kleinkunsttheater.webs.com/apps/guestbook/

https://topessaywritingbase.com/
how to write a good conclusion for an essay
https://quality-essays.com/
how to write an admissions essay for graduate school
https://ouressays.com/
help writing my college essay
https://topessayservicescloud.com/
writing essays online
https://chavez26wilkerson.webs.com/apps/blog/show/48147572-the-sm
art-trick-of-face-masks-uk-that-no-one-is-discussing

https://topessayssites.com/
essays about writing
https://bestessayseducationusa.com/
online essay writers wanted
https://topessayservicescloud.com/
writing compare and contrast essay
https://essaypromaster.com/
how to write good argumentative essays
https://skaaruprafferty6.webs.com/apps/blog/show/47963591-m-225-y
-gi-7863-t-samsung-addwash-inverter-7-5-kg-ww75k5210yw

https://topswritingservices.com/
best custom essays
https://topessayservicescloud.com/
write an argumentative essay
https://topswritingservices.com/
customer service essays
https://dissertationwritingtops.com/
learning how to write essays
https://olutsuomi.webs.com/apps/guestbook/

https://topessayssites.com/
college application essay editing services
https://topswritingservices.com/
best college essay ever written
https://topswritingservices.com/
writing prompts for persuasive essays
https://ouressays.com/
what does a college essay look like
https://avga.webs.com/apps/guestbook/

https://essayextra.com/
easy steps to writing an essay
https://essayssolution.com/
leadership essays for college
https://englishessayhelp.com/
how to write essays quickly
https://theessayswriters.com/
how to write an interesting essay
https://choppercharlie.webs.com/apps/guestbook/

http://www.caterina-hein.de/url?q=https://cadmed-bb.com
http://axel.apd.hu/index.php?name=NewsPortal&file=index&todo=outl
ink&rss_id=145&url=https://cadmed-bb.com
https://lyceumtheatre.org/player/claire-glaude/?back=https://cadm
ed-bb.com
https://chofu.keizai.biz/banner.php?type=text_banner&position=rig
ht&id=3&uri=https://cadmed-bb.com
https://yapy.jp/?F=contact&t=1&d=cadmed-bb.com&fc=FFFFFF&tc=C3004
6&hc=CCCCCC
https://keluargahamkajohor.webs.com/apps/guestbook/

https://images.google.nu/url?sa=t&url=https://cadmed-bb.com
https://clients1.google.co.zw/url?q=https://cadmed-bb.com
http://v-degunino.ru/url.php?https://cadmed-bb.com
http://riverconditions.environment-agency.gov.uk/relatedlink.html
?class=link&link=https://cadmed-bb.com
http://www.amateurspankingboys.com/home.aspx?returnurl=https://ca
dmed-bb.com
https://floodreborn.webs.com/apps/guestbook/
Oops!
Oops, you forgot something.