本文介绍了错误54'scharttype.MyMethod()':并非所有代码路径都返回一个值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
目标 - 希望以图表形式显示
我的CS页面
使用系统;
使用 System.Collections.Generic;
使用 System.Linq;
使用 System.Web;
使用 System.Web.UI;
使用 System.Web.UI.WebControls;
使用 System.Web.Services;
使用 MySql.Data.MySqlClient;
使用 System.Web.Script.Serialization;
public partial class charttype:System.Web.UI.Page
{
protected void Page_Load( object sender,EventArgs e)
{
try
{
string a1 =会话[ 。用户名跨度>]的ToString();
string a2 =会话[ pass 跨度>]的ToString();
}
catch (例外错误)
{
// Server.Transfer(AdminLogin1.aspx);
}
string firstname = ,lastname = ;
尝试
{
firstname =会话[ 名字跨度>]的ToString();
}
catch (例外错误)
{
}
尝试
{
lastname =会话[ 姓氏跨度>]的ToString();
}
catch (异常错误)
{
}
尝试
{
Label11.Text = 您好, + firstname + + lastname;
}
catch (异常错误)
{
}
}
[WebMethod]
public static string MyMethod() // 此行显示错误
{
解决方案
Aim-Want to display in chart form
My CS page
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.Services; using MySql.Data.MySqlClient; using System.Web.Script.Serialization; public partial class charttype : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { try { string a1 = Session["username"].ToString(); string a2 = Session["pass"].ToString(); } catch (Exception err) { //Server.Transfer("AdminLogin1.aspx"); } string firstname = "", lastname = ""; try { firstname = Session["firstname"].ToString(); } catch (Exception err) { } try { lastname = Session["lastname"].ToString(); } catch (Exception err) { } try { Label11.Text = "Hi, " + firstname + " " + lastname; } catch (Exception err) { } } [WebMethod] public static string MyMethod() //This line is showing error {
解决方案
这篇关于错误54'scharttype.MyMethod()':并非所有代码路径都返回一个值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!